Update docker-compose.yaml
Some checks failed
Updates/Joplin/pipeline/head There was a failure building this commit

This commit is contained in:
Adam Outler 2025-03-30 17:23:20 +00:00
parent ab87c40d13
commit 4aca85496b

View File

@ -15,11 +15,11 @@ services:
volumes: volumes:
- data:/var/lib/joplin - data:/var/lib/joplin
networks: networks:
- joplin_network - joplin-net
joplin-vieweb: joplin-vieweb:
image: gri38/django-joplin-vieweb # Check Docker Hub for the image name/tags image: gri38/django-joplin-vieweb # Check Docker Hub for the image name/tags
ports: ports:
- "8088:80" # Or your preferred host port - "8088:8000" # Or your preferred host port
environment: environment:
# *** Points to your Joplin Server instance *** # *** Points to your Joplin Server instance ***
- JOPLIN_URL=https://server.joplin adamoutler.com # Use service name if on same Docker network - JOPLIN_URL=https://server.joplin adamoutler.com # Use service name if on same Docker network
@ -35,6 +35,15 @@ services:
# Optional: Require login to vieweb itself (check docs for JOPLIN_LOGIN_REQUIRED or similar) # Optional: Require login to vieweb itself (check docs for JOPLIN_LOGIN_REQUIRED or similar)
# - JOPLIN_LOGIN_REQUIRED=true # or false/unset # - JOPLIN_LOGIN_REQUIRED=true # or false/unset
networks:
- joplin-net
joplin-terminal-xapi:
image: gri38/joplin-terminal-xapi:latest
restart: unless-stopped
volumes:
- joplin:/root/.config/joplin
networks:
- joplin-net
volumes: volumes:
data: data: