chore: update container image
All checks were successful
Deploy / Prepare Build (push) Successful in 24m50s

This commit is contained in:
2025-10-15 20:05:45 +10:00
parent 50d0386d1f
commit 6208f61652
21 changed files with 94 additions and 266 deletions

View File

@@ -7,17 +7,10 @@
- "/data/gotify"
- "/data/gotify/data"
- name: Pull docker image
community.docker.docker_image:
name: gotify/server
tag: 2.7.3
source: pull
register: docker_image
- name: Create the gotify container
docker_container:
name: gotify
image: "{{ docker_image.image.RepoTags[0] }}"
image: gotify/server:2.7.3
restart_policy: unless-stopped
networks:
- name: proxy
@@ -30,6 +23,6 @@
traefik.http.routers.gotify.tls: "true"
traefik.http.routers.gotify.service: "gotify"
traefik.http.services.gotify.loadbalancer.server.port: "80"
when: docker_image.changed
register: container_gotify
pull: true
recreate: true