re-defined compose and .env file names
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
version: '2'
|
version: '2'
|
||||||
|
|
||||||
services:
|
services:
|
||||||
cloudflare-ddns:
|
cloudflare-ddns:
|
||||||
container_name: ddns-cloudflare
|
container_name: ddns-cloudflare
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
version: "2.1"
|
version: "2.1"
|
||||||
|
|
||||||
services:
|
services:
|
||||||
heimdall:
|
heimdall:
|
||||||
image: lscr.io/linuxserver/heimdall:latest
|
image: lscr.io/linuxserver/heimdall:latest
|
||||||
5
mealie/.env
Normal file
5
mealie/.env
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
# Where your media will be stored
|
||||||
|
DATA_FOLDER=/path/to/data
|
||||||
|
|
||||||
|
# URL for your domain for Mealie
|
||||||
|
BASE_URL=https://mealie.yourdomain.com
|
||||||
39
mealie/compose.yaml
Normal file
39
mealie/compose.yaml
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
version: "3.7"
|
||||||
|
|
||||||
|
services:
|
||||||
|
mealie-frontend:
|
||||||
|
image: hkotel/mealie:frontend-v1.0.0beta-5
|
||||||
|
container_name: mealie-frontend
|
||||||
|
env_file:
|
||||||
|
- stack.env
|
||||||
|
environment:
|
||||||
|
# Set Frontend ENV Variables Here
|
||||||
|
- API_URL=http://mealie-api:9000
|
||||||
|
restart: unless-stopped
|
||||||
|
ports:
|
||||||
|
- "9925:3000"
|
||||||
|
volumes:
|
||||||
|
- ${DATA_FOLDER}/mealie:/app/data/
|
||||||
|
mealie-api:
|
||||||
|
image: hkotel/mealie:api-v1.0.0beta-5
|
||||||
|
container_name: mealie-api
|
||||||
|
deploy:
|
||||||
|
resources:
|
||||||
|
limits:
|
||||||
|
memory: 1024M
|
||||||
|
volumes:
|
||||||
|
- ${DATA_FOLDER}/mealie:/app/data/
|
||||||
|
environment:
|
||||||
|
# Set Backend ENV Variables Here
|
||||||
|
- ALLOW_SIGNUP=true
|
||||||
|
- PUID=1000
|
||||||
|
- PGID=1000
|
||||||
|
- TZ=Europe/Warsaw
|
||||||
|
- MAX_WORKERS=1
|
||||||
|
- WEB_CONCURRENCY=1
|
||||||
|
- BASE_URL=${BASE_URL}
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
mealie-data:
|
||||||
|
driver: local
|
||||||
Reference in New Issue
Block a user