From 4aca85496b1ee2b3a46c8c80d6fa87117ad75c3e Mon Sep 17 00:00:00 2001 From: Adam Outler Date: Sun, 30 Mar 2025 17:23:20 +0000 Subject: [PATCH] Update docker-compose.yaml --- docker-compose.yaml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/docker-compose.yaml b/docker-compose.yaml index ee0e334..2801de2 100644 --- a/docker-compose.yaml +++ b/docker-compose.yaml @@ -15,11 +15,11 @@ services: volumes: - data:/var/lib/joplin networks: - - joplin_network + - joplin-net joplin-vieweb: image: gri38/django-joplin-vieweb # Check Docker Hub for the image name/tags ports: - - "8088:80" # Or your preferred host port + - "8088:8000" # Or your preferred host port environment: # *** Points to your Joplin Server instance *** - 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) # - 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: data: