31 lines
786 B
YAML
31 lines
786 B
YAML
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:
|