mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
20 lines
406 B
YAML
20 lines
406 B
YAML
services:
|
|
mealie:
|
|
image: hkotel/mealie:latest
|
|
ports:
|
|
- "9925:9000"
|
|
volumes:
|
|
- mealie_data:/app/data
|
|
environment:
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=Europe/Berlin
|
|
- BASE_URL=http://mealie.theocloud.dev
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:9000"]
|
|
interval: 30s
|
|
timeout: 10s
|
|
retries: 5
|
|
|
|
volumes:
|
|
mealie_data:
|