mirror of
https://github.com/theoleuthardt/homelab-docker-compose.git
synced 2026-06-05 15:41:07 +00:00
init all current docker compose files
This commit is contained in:
parent
3694b45ece
commit
adc70638d1
12 changed files with 432 additions and 0 deletions
20
mealie/docker-compose.yml
Normal file
20
mealie/docker-compose.yml
Normal 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:
|
||||
Loading…
Add table
Add a link
Reference in a new issue