From f45b8ce9ba87f30b0282d402fedadf00371e5d31 Mon Sep 17 00:00:00 2001 From: M_Viper Date: Mon, 12 Feb 2024 21:18:42 +0000 Subject: [PATCH] Dateien nach "install-mealie-on-portainer" hochladen --- .../docker-compose.yml | 30 +++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 install-mealie-on-portainer/docker-compose.yml diff --git a/install-mealie-on-portainer/docker-compose.yml b/install-mealie-on-portainer/docker-compose.yml new file mode 100644 index 0000000..2c2229d --- /dev/null +++ b/install-mealie-on-portainer/docker-compose.yml @@ -0,0 +1,30 @@ +version: "3" # Specifies the version of the Docker Compose file format + +# Service definitions for the big-bear-mealie application +services: + # Service name: app + # The `app` service definition + app: + # Name of the container + container_name: M_Viper-mealie + + # Image to be used for the container + image: hkotel/mealie:v1.2.0 + + # Container restart policy + restart: unless-stopped + + # Volumes to be mounted to the container + volumes: + # Mounting the docker volume to /app/data inside the container + - mealie_data:/app/data + + # Ports mapping between host and container + ports: + # Mapping port 9925 of the host to port 9000 of the container + - "9925:9000" + +# Volumes +volumes: + # Define a named volume for data persistence + mealie_data: