chore: upgrade mealie to v3
All checks were successful
Deploy / Prepare Build (push) Successful in 1m30s
All checks were successful
Deploy / Prepare Build (push) Successful in 1m30s
This commit is contained in:
5
hosts
5
hosts
@ -1,15 +1,12 @@
|
|||||||
[proxmox]
|
[proxmox]
|
||||||
pve2.comprofix.xyz ansible_user=root
|
|
||||||
|
|
||||||
[cloud]
|
[cloud]
|
||||||
vps02.comprofix.com
|
|
||||||
|
|
||||||
[docker]
|
[docker]
|
||||||
docker.comprofix.xyz
|
docker.comprofix.xyz
|
||||||
|
|
||||||
[omada]
|
[omada]
|
||||||
omada-lxc.comprofix.xyz ansible_user=root
|
|
||||||
|
|
||||||
[vps]
|
[vps]
|
||||||
vps01.comprofix.com
|
|
||||||
|
|
||||||
|
15
hosts copy
Normal file
15
hosts copy
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
[proxmox]
|
||||||
|
pve2.comprofix.xyz ansible_user=root
|
||||||
|
|
||||||
|
[cloud]
|
||||||
|
vps02.comprofix.com
|
||||||
|
|
||||||
|
[docker]
|
||||||
|
docker.comprofix.xyz
|
||||||
|
|
||||||
|
[omada]
|
||||||
|
omada-lxc.comprofix.xyz ansible_user=root
|
||||||
|
|
||||||
|
[vps]
|
||||||
|
vps01.comprofix.com
|
||||||
|
|
@ -1,36 +1,36 @@
|
|||||||
---
|
---
|
||||||
- name: Create directories
|
- name: Create directories
|
||||||
file:
|
file:
|
||||||
path: "{{ item }}"
|
path: "{{ item }}"
|
||||||
state: directory
|
state: directory
|
||||||
with_items:
|
with_items:
|
||||||
- "{{ data_folder }}/mealie"
|
- "{{ data_folder }}/mealie"
|
||||||
- "{{ data_folder }}/mealie/config"
|
- "{{ data_folder }}/mealie/config"
|
||||||
|
|
||||||
- name: Create the mealie container
|
- name: Create the mealie container
|
||||||
docker_container:
|
docker_container:
|
||||||
name: mealie
|
name: mealie
|
||||||
image: ghcr.io/mealie-recipes/mealie:v2.8.0
|
image: ghcr.io/mealie-recipes/mealie:v3.0.2
|
||||||
restart_policy: unless-stopped
|
restart_policy: unless-stopped
|
||||||
networks:
|
networks:
|
||||||
- name: proxy
|
- name: proxy
|
||||||
env:
|
env:
|
||||||
PUID: "1000"
|
PUID: "1000"
|
||||||
PGID: "1000"
|
PGID: "1000"
|
||||||
TZ: "Australia/Brisbane"
|
TZ: "Australia/Brisbane"
|
||||||
RECIPE_PUBLIC: "true"
|
RECIPE_PUBLIC: "true"
|
||||||
RECIPE_SHOW_NUTRITION: "false"
|
RECIPE_SHOW_NUTRITION: "false"
|
||||||
RECIPE_SHOW_ASSETS: "true"
|
RECIPE_SHOW_ASSETS: "true"
|
||||||
RECIPE_LANDSCAPE_VIEW: "true"
|
RECIPE_LANDSCAPE_VIEW: "true"
|
||||||
RECIPE_DISABLE_COMMENTS: "true"
|
RECIPE_DISABLE_COMMENTS: "true"
|
||||||
RECIPE_DISABLE_AMOUNT: "true"
|
RECIPE_DISABLE_AMOUNT: "true"
|
||||||
BASE_URL: "mealie.comprofix.xyz"
|
BASE_URL: "mealie.comprofix.xyz"
|
||||||
SMTP_HOST: "{{MAIL_HOST}}"
|
SMTP_HOST: "{{MAIL_HOST}}"
|
||||||
volumes:
|
volumes:
|
||||||
- "{{ data_folder }}/mealie/data/:/app/data"
|
- "{{ data_folder }}/mealie/data/:/app/data"
|
||||||
labels:
|
labels:
|
||||||
traefik.enable: "true"
|
traefik.enable: "true"
|
||||||
traefik.http.routers.mealie.rule: "Host(`mealie.comprofix.xyz`)"
|
traefik.http.routers.mealie.rule: "Host(`mealie.comprofix.xyz`)"
|
||||||
traefik.http.routers.mealie.entrypoints: "https"
|
traefik.http.routers.mealie.entrypoints: "https"
|
||||||
traefik.http.routers.mealie.tls: "true"
|
traefik.http.routers.mealie.tls: "true"
|
||||||
traefik.http.services.mealie.loadbalancer.server.port: "9000"
|
traefik.http.services.mealie.loadbalancer.server.port: "9000"
|
||||||
|
Reference in New Issue
Block a user