apps/mealie/docker-compose.yml aktualisiert
This commit is contained in:
@@ -3,6 +3,8 @@ services:
|
|||||||
image: ghcr.io/mealie-recipes/mealie:v3.12.0
|
image: ghcr.io/mealie-recipes/mealie:v3.12.0
|
||||||
container_name: mealie
|
container_name: mealie
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- /mnt/user/appdata/secrets/mealie.env
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
TZ: Europe/Berlin
|
TZ: Europe/Berlin
|
||||||
@@ -10,14 +12,12 @@ services:
|
|||||||
PUID: "99"
|
PUID: "99"
|
||||||
PGID: "100"
|
PGID: "100"
|
||||||
|
|
||||||
# DB
|
|
||||||
DB_ENGINE: postgres
|
DB_ENGINE: postgres
|
||||||
POSTGRES_SERVER: mealie-postgres
|
POSTGRES_SERVER: mealie-postgres
|
||||||
POSTGRES_DB: mealie
|
POSTGRES_DB: mealie
|
||||||
POSTGRES_USER: mealie
|
POSTGRES_USER: mealie
|
||||||
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
|
POSTGRES_PASSWORD: ${MEALIE_DB_PASSWORD}
|
||||||
|
|
||||||
# URL
|
|
||||||
BASE_URL: https://mealie.kaleschke.info
|
BASE_URL: https://mealie.kaleschke.info
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
@@ -43,17 +43,18 @@ services:
|
|||||||
image: postgres:17
|
image: postgres:17
|
||||||
container_name: mealie-postgres
|
container_name: mealie-postgres
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
|
env_file:
|
||||||
|
- /mnt/user/appdata/secrets/mealie.env
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
TZ: Europe/Berlin
|
TZ: Europe/Berlin
|
||||||
POSTGRES_USER: mealie
|
POSTGRES_USER: mealie
|
||||||
POSTGRES_DB: mealie
|
POSTGRES_DB: mealie
|
||||||
POSTGRES_PASSWORD_FILE: /run/secrets/postgres_password
|
POSTGRES_PASSWORD: ${MEALIE_DB_PASSWORD}
|
||||||
PGDATA: /var/lib/postgresql/data
|
PGDATA: /var/lib/postgresql/data
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- /mnt/user/appdata/mealie/postgres:/var/lib/postgresql/data
|
- /mnt/user/appdata/mealie/postgres:/var/lib/postgresql/data
|
||||||
- /mnt/user/appdata/secrets/mealie_postgres_password.txt:/run/secrets/postgres_password:ro
|
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
- mealie_internal
|
- mealie_internal
|
||||||
|
|||||||
Reference in New Issue
Block a user