Dateien nach "install-mealie-on-portainer" hochladen

This commit is contained in:
M_Viper 2024-02-12 21:18:42 +00:00
parent 04fafceaa5
commit f45b8ce9ba
1 changed files with 30 additions and 0 deletions

View File

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