24 lines
523 B
YAML
24 lines
523 B
YAML
---
|
|
version: "3.7"
|
|
services:
|
|
mealie:
|
|
image: ghcr.io/mealie-recipes/mealie:latest
|
|
container_name: mealie
|
|
ports:
|
|
- "9925:9000" #
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 1000M #
|
|
volumes:
|
|
- ./mealie-data:/app/data/
|
|
environment:
|
|
# Set Backend ENV Variables Here
|
|
- ALLOW_SIGNUP=true
|
|
- PUID=1000
|
|
- PGID=1000
|
|
- TZ=America/Denver
|
|
- MAX_WORKERS=1
|
|
- WEB_CONCURRENCY=1
|
|
- BASE_URL=https://YOUR-URL.com #change
|
|
restart: always |