CHAGE: Replaced bind mount with the named one
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# Where your media will be stored
|
# Where your media will be stored (if using bind mount, otherwise leave empty)
|
||||||
DATA_FOLDER=/path/to/data
|
DATA_FOLDER=/path/to/data
|
||||||
|
|
||||||
# URL for your domain for Mealie
|
# URL for your domain for Mealie
|
||||||
|
|||||||
@@ -12,14 +12,14 @@ services:
|
|||||||
limits:
|
limits:
|
||||||
memory: 1000M #
|
memory: 1000M #
|
||||||
volumes:
|
volumes:
|
||||||
- ${DATA_FOLDER}:/app/data/
|
- mealie_data:/app/data/
|
||||||
environment:
|
environment:
|
||||||
# Set Backend ENV Variables Here
|
# Set Backend ENV Variables Here
|
||||||
ALLOW_SIGNUP: "false"
|
ALLOW_SIGNUP: "false"
|
||||||
PUID: 1000
|
PUID: 1000
|
||||||
PGID: 1000
|
PGID: 1000
|
||||||
TZ: Europe/Warsaw
|
TZ: Europe/Warsaw
|
||||||
BASE_URL: ${YOUR_DOMAIN:-https://mealie.yourdomain.com}
|
BASE_URL: ${BASE_URL:-https://mealie.yourdomain.com}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ["CMD", "curl", "-f", "http://localhost:9000"]
|
test: ["CMD", "curl", "-f", "http://localhost:9000"]
|
||||||
interval: 30s
|
interval: 30s
|
||||||
@@ -28,6 +28,9 @@ services:
|
|||||||
networks:
|
networks:
|
||||||
- mealie-net
|
- mealie-net
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
mealie_data:
|
||||||
|
|
||||||
networks:
|
networks:
|
||||||
mealie-net:
|
mealie-net:
|
||||||
driver: bridge
|
driver: bridge
|
||||||
Reference in New Issue
Block a user