fix mealie

This commit is contained in:
peaklabs-dev
2024-11-22 23:29:37 +01:00
parent 58055dc9c0
commit e738f38292

View File

@@ -7,18 +7,18 @@
services: services:
mealie: mealie:
image: 'ghcr.io/mealie-recipes/mealie:latest' image: 'ghcr.io/mealie-recipes/mealie:latest'
volumes:
- SERVICE_FQDN_MEALIE_9000
- '${COOLIFY_VOLUME_APP}:/app/data/'
environment: environment:
ALLOW_SIGNUP: 'false' - SERVICE_FQDN_MEALIE_9000
PUID: 1000 - ALLOW_SIGNUP=${ALLOW_SIGNUP:-true}
PGID: 1000 - PUID=${PUID:-1000}
# TZ: Europe/Berlin - PGID=${PGID:-1000}
MAX_WORKERS: 1 - TZ=${TZ:-Europe/Berlin}
WEB_CONCURRENCY: 1 - MAX_WORKERS=${MAX_WORKERS:-1}
- WEB_CONCURRENCY=${WEB_CONCURRENCY:-1}
volumes:
- mealie_data:/app/data
healthcheck: healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000"] test: ["CMD-SHELL", "bash -c ':> /dev/tcp/127.0.0.1/9000' || exit 1"]
interval: 5s interval: 5s
timeout: 20s timeout: 10s
retries: 10 retries: 5