apps/mealie/docker-compose.yml aktualisiert

This commit is contained in:
2026-03-25 18:46:49 +00:00
parent 820fc48f34
commit 3db0744f23
+6 -5
View File
@@ -3,6 +3,8 @@ services:
image: ghcr.io/mealie-recipes/mealie:v3.12.0
container_name: mealie
restart: unless-stopped
env_file:
- /mnt/user/appdata/secrets/mealie.env
environment:
TZ: Europe/Berlin
@@ -10,14 +12,12 @@ services:
PUID: "99"
PGID: "100"
# DB
DB_ENGINE: postgres
POSTGRES_SERVER: mealie-postgres
POSTGRES_DB: mealie
POSTGRES_USER: mealie
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
POSTGRES_PASSWORD: ${MEALIE_DB_PASSWORD}
# URL
BASE_URL: https://mealie.kaleschke.info
volumes:
@@ -43,17 +43,18 @@ services:
image: postgres:17
container_name: mealie-postgres
restart: unless-stopped
env_file:
- /mnt/user/appdata/secrets/mealie.env
environment:
TZ: Europe/Berlin
POSTGRES_USER: mealie
POSTGRES_DB: mealie
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
POSTGRES_PASSWORD: ${MEALIE_DB_PASSWORD}
PGDATA: /var/lib/postgresql/data
volumes:
- /mnt/user/appdata/mealie/postgres:/var/lib/postgresql/data
- /mnt/user/appdata/secrets/mealie_postgres_password.txt:/run/secrets/postgres_password:ro
networks:
- mealie_internal