joplin-vieweb/docker-compose.debug.yml

27 lines
672 B
YAML
Raw Normal View History

version: '3.4'
services:
djangojoplinvieweb:
build: django-joplin-vieweb
depends_on:
- joplin-terminal-xapi
command: ["sh", "-c", "pip install debugpy -t /tmp && python /tmp/debugpy --wait-for-client --listen 0.0.0.0:5678 manage.py runserver 0.0.0.0:8001 --nothreading --noreload"]
ports:
- 8001:8001
- 5678:5678
volumes:
- joplin:/root/.config/joplin:ro
- joplin-vieweb:/root/.config/joplin-vieweb
joplin-terminal-xapi:
2022-04-09 20:10:14 +02:00
build: joplin-terminal-xapi
ports:
- "8080:8080"
- "8081:8081"
volumes:
- joplin:/root/.config/joplin
volumes:
joplin:
joplin-vieweb: