From febdbb04b098e9f0cf596ff7621d6a740c4e81c4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Thu, 6 Nov 2025 12:28:01 +0100 Subject: [PATCH] fix: add joplin_data volume to joplin stack MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added missing volume definition for Joplin Server data persistence. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- joplin/compose.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/joplin/compose.yaml b/joplin/compose.yaml index 3f9f4c0..315507b 100644 --- a/joplin/compose.yaml +++ b/joplin/compose.yaml @@ -3,6 +3,8 @@ services: image: ${JOPLIN_IMAGE:-joplin/server:latest} container_name: ${JOPLIN_COMPOSE_PROJECT_NAME}_app restart: unless-stopped + volumes: + - joplin_data:/data environment: TZ: ${TIMEZONE:-Europe/Berlin} APP_PORT: ${JOPLIN_APP_PORT:-22300} @@ -32,6 +34,10 @@ services: - 'traefik.docker.network=${NETWORK_NAME}' - 'com.centurylinklabs.watchtower.enable=${WATCHTOWER_LABEL_ENABLE}' +volumes: + joplin_data: + name: joplin_data + networks: compose_network: name: ${NETWORK_NAME}