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,18 +6,11 @@
with_items:
- "/data/sabnzbd"
- "/data/sabnzbd/config"
- name: Pull docker image
community.docker.docker_image:
name: linuxserver/sabnzbd
tag: 4.5.3
source: pull
register: docker_image
- name: Create the sabnzbd container
docker_container:
name: sabnzbd
image: "{{ docker_image.image.RepoTags[0] }}"
image: linuxserver/sabnzbd:4.5.3
restart_policy: unless-stopped
networks:
- name: proxy
@@ -36,5 +29,6 @@
traefik.http.routers.sabnzbd.entrypoints: "https"
traefik.http.routers.sabnzbd.tls: "true"
traefik.http.services.sabnzbd.loadbalancer.server.port: "8080"
when: docker_image.changed
register: container_sabnzbd
pull: true
recreate: true