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

@@ -6,17 +6,10 @@
with_items:
- "/data/mediawiki"
- name: Pull docker image
community.docker.docker_image:
name: mediawiki
tag: 1.44.2
source: pull
register: docker_image
- name: Create the wiki container
docker_container:
name: mediawiki
image: "{{ docker_image.image.RepoTags[0] }}"
image: mediawiki:1.44.2
restart_policy: unless-stopped
networks:
- name: proxy
@@ -33,5 +26,5 @@
traefik.http.routers.wiki.entrypoints: "https"
traefik.http.routers.wiki.tls: "true"
traefik.http.services.wiki.loadbalancer.server.port: "80"
when: docker_image.changed
register: container_mediawiki
pull: true
recreate: true