mirror of
https://gitlab.com/rusty-bever/deployment.git
synced 2026-04-08 06:05:47 +02:00
Added mealie stack
This commit is contained in:
parent
d17781934c
commit
60cc1b248d
1 changed files with 47 additions and 0 deletions
47
stacks/mealie.yml
Normal file
47
stacks/mealie.yml
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
version: '3.4'
|
||||
|
||||
services:
|
||||
app:
|
||||
image: 'hkotel/mealie:v0.5.6'
|
||||
|
||||
deploy:
|
||||
mode: 'replicated'
|
||||
replicas: 1
|
||||
placement:
|
||||
constraints:
|
||||
- 'node.labels.class.mealie==true'
|
||||
labels:
|
||||
- 'traefik.enable=true'
|
||||
- 'traefik.http.routers.miniflux.rule=Host(`cook.rustybever.be`)'
|
||||
- 'traefik.http.routers.miniflux.tls=true'
|
||||
- 'traefik.http.routers.miniflux.tls.certresolver=letsEncrypt'
|
||||
- 'traefik.http.services.miniflux.loadbalancer.server.port=80'
|
||||
|
||||
environment:
|
||||
- 'PUID=1000'
|
||||
- 'PGID=1000'
|
||||
- 'TZ=Europe/Brussels'
|
||||
|
||||
# Default Recipe Settings
|
||||
- 'RECIPE_PUBLIC=true'
|
||||
- 'RECIPE_SHOW_NUTRITION=false'
|
||||
- 'RECIPE_SHOW_ASSETS=true'
|
||||
- 'RECIPE_LANDSCAPE_VIEW=true'
|
||||
- 'RECIPE_DISABLE_COMMENTS=false'
|
||||
- 'RECIPE_DISABLE_AMOUNT=false'
|
||||
|
||||
# My stuff
|
||||
- 'BASE_URL=https://cook.rustybever.be'
|
||||
- 'DEFAULT_GROUP=Default'
|
||||
- 'API_DOCS=false'
|
||||
networks:
|
||||
- public
|
||||
volumes:
|
||||
- 'data:/app/data'
|
||||
|
||||
networks:
|
||||
public:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
data:
|
||||
Loading…
Add table
Add a link
Reference in a new issue