CHAGE: Replaced bind mount with the named one

This commit is contained in:
2025-08-28 20:09:24 +02:00
parent 33ef444052
commit 9d8d2b702f
2 changed files with 6 additions and 3 deletions

View File

@@ -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

View File

@@ -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