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.
This commit is contained in:
Oliver Pifferi 2025-04-22 15:50:51 +02:00
parent 6918bd9817
commit 54a2fd730b

View file

@ -4,9 +4,9 @@ services:
restart: unless-stopped restart: unless-stopped
image: postgres:latest image: postgres:latest
ports: ports:
- "5432:5432" - "5433:5432"
volumes: volumes:
- /opt/joplin-server:/var/lib/postgresql/data - /volume1/docker/joplin-server:/var/lib/postgresql/data
environment: environment:
- POSTGRES_PASSWORD=yourdbpassword - POSTGRES_PASSWORD=yourdbpassword
- POSTGRES_USER=joplin - POSTGRES_USER=joplin