diff --git a/docs/portainer-stacks/mealie.md b/docs/portainer-stacks/mealie.md new file mode 100644 index 0000000..04a446c --- /dev/null +++ b/docs/portainer-stacks/mealie.md @@ -0,0 +1,31 @@ +``yaml +--- +version: "3.8" +services: + mealie: + container_name: mealie + image: hkotel/mealie:latest + restart: always + network_mode: bridge + ports: + - 80:80 + environment: + PUID: 1000 + PGID: 1000 + TZ: Europe/Amsterdam + # Default Recipe Settings + RECIPE_PUBLIC: 'false' + RECIPE_SHOW_NUTRITION: 'true' + RECIPE_SHOW_ASSETS: 'true' + RECIPE_LANDSCAPE_VIEW: 'true' + RECIPE_DISABLE_COMMENTS: 'false' + RECIPE_DISABLE_AMOUNT: 'false' + # Gunicorn + # WEB_CONCURRENCY: 2 + # WORKERS_PER_CORE: 0.5 + # MAX_WORKERS: 8 + volumes: + - /docker/mealie:/app/data + labels: + - com.centurylinklabs.watchtower.enable=true +``` \ No newline at end of file diff --git a/docs/portainer-stacks/n8n.md b/docs/portainer-stacks/n8n.md index d858f38..2a5bfdf 100644 --- a/docs/portainer-stacks/n8n.md +++ b/docs/portainer-stacks/n8n.md @@ -1,3 +1,4 @@ +```yaml --- version: "3.8" services: @@ -36,4 +37,5 @@ services: - MYSQL_PASSWORD=n8n_db_password volumes: - /docker/n8n/db:/config - restart: unless-stopped \ No newline at end of file + restart: unless-stopped +``` \ No newline at end of file diff --git a/mkdocs.yml b/mkdocs.yml index c588893..96ebf6e 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -95,7 +95,7 @@ nav: - Heimdall: portainer-stacks/heimdall.md - Jellyfin: portainer-stacks/jellyfin.md - LibrePhotos: portainer-stacks/LibrePhotos.md - - Librespeed: portainer-stacks/Librespeed.md + - mealie: portainer-stacks/mealie.md - MQTT-Explorer: portainer-stacks/mqtt-explorer.md - MQTT Mosquitto: portainer-stacks/MQTT-Mosquitto.md - n8n: portainer-stacks/n8n.md