diff --git a/docker-compose-test.yml b/docker-compose-test.yml deleted file mode 100644 index b3c6b94..0000000 --- a/docker-compose-test.yml +++ /dev/null @@ -1,25 +0,0 @@ -version: '3.4' - -services: - certbot: - image: certbot/certbot:latest - depends_on: - - joplin-vieweb-nginx - volumes: - - certbot_www:/var/www/certbot/:rw - - certbot_conf:/etc/letsencrypt/:rw - - joplin-vieweb-nginx: - build: ./joplin-vieweb-nginx - ports: - - 80:80 - - 443:443 - environment: - - server_name=guillot.fr.nf - volumes: - - certbot_www:/var/www/certbot/:ro - - certbot_conf:/etc/letsencrypt/:ro - -volumes: - certbot_www: - certbot_conf: diff --git a/docker-compose.debug.yml b/docker-compose.debug.yml index d24ecf0..b708fcc 100644 --- a/docker-compose.debug.yml +++ b/docker-compose.debug.yml @@ -6,31 +6,21 @@ services: 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"] - # command: ["/bin/sh"] - # stdin_open: true - # tty: true ports: - 8001:8001 - 5678:5678 volumes: - joplin:/root/.config/joplin:ro - joplin-vieweb:/root/.config/joplin-vieweb - # networks: - # - joplin-net joplin-terminal-xapi: - image: joplin-terminal-xapi + build: joplin-terminal-xapi ports: - "8080:8080" - "8081:8081" volumes: - joplin:/root/.config/joplin - # networks: - # - joplin-net volumes: joplin: joplin-vieweb: - -# networks: -# joplin-net: {}