2023-03-25 12:32:18 +00:00
|
|
|
---
|
|
|
|
|
version: "3.7"
|
|
|
|
|
services:
|
|
|
|
|
mealie-frontend:
|
|
|
|
|
image: hkotel/mealie:frontend-v1.0.0beta-5
|
|
|
|
|
container_name: mealie-frontend
|
|
|
|
|
environment:
|
|
|
|
|
# Set Frontend ENV Variables Here
|
|
|
|
|
- API_URL=http://mealie-api:9000 #
|
|
|
|
|
restart: always
|
|
|
|
|
ports:
|
|
|
|
|
- "9925:3000" #
|
|
|
|
|
volumes:
|
|
|
|
|
- mealie-data:/app/data/ #
|
|
|
|
|
mealie-api:
|
|
|
|
|
image: hkotel/mealie:api-v1.0.0beta-5
|
|
|
|
|
container_name: mealie-api
|
|
|
|
|
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/Anchorage
|
|
|
|
|
- MAX_WORKERS=1
|
|
|
|
|
- WEB_CONCURRENCY=1
|
2023-03-25 13:24:46 +00:00
|
|
|
- BASE_URL=https://food.irina-and-spencer.com
|
2023-03-25 12:32:18 +00:00
|
|
|
restart: always
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
mealie-data:
|
2023-03-25 13:24:46 +00:00
|
|
|
driver: local
|