Update file docker-compose.yml
This commit is contained in:
commit
a83dc5eee3
1 changed files with 37 additions and 0 deletions
37
docker-compose.yml
Normal file
37
docker-compose.yml
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
---
|
||||||
|
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
|
||||||
|
- BASE_URL=https://mealie.yourdomain.com
|
||||||
|
restart: always
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
mealie-data:
|
||||||
|
driver: local
|
||||||
Loading…
Reference in a new issue