init all current docker compose files

This commit is contained in:
theoleuthardt 2025-07-16 11:11:24 +00:00
parent 3694b45ece
commit adc70638d1
12 changed files with 432 additions and 0 deletions

20
mealie/docker-compose.yml Normal file
View file

@ -0,0 +1,20 @@
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: