From 54a2fd730becf005d3d6ff8b5e8e6a24c5ba9c20 Mon Sep 17 00:00:00 2001 From: oliver Date: Tue, 22 Apr 2025 15:50:51 +0200 Subject: [PATCH] stack_joplin_server.yaml aktualisiert Changed the mountpoint to work with a shared folder on /volume1 as well as port 5433 externally once you already have a PostgreSQL-instance running on your NAS. --- stack_joplin_server.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stack_joplin_server.yaml b/stack_joplin_server.yaml index e4f615e..c641a05 100644 --- a/stack_joplin_server.yaml +++ b/stack_joplin_server.yaml @@ -4,9 +4,9 @@ services: restart: unless-stopped image: postgres:latest ports: - - "5432:5432" + - "5433:5432" volumes: - - /opt/joplin-server:/var/lib/postgresql/data + - /volume1/docker/joplin-server:/var/lib/postgresql/data environment: - POSTGRES_PASSWORD=yourdbpassword - POSTGRES_USER=joplin