worked on the updating the docker

This commit is contained in:
Justin 2026-02-09 23:06:01 -06:00
parent bccc5b0d5f
commit 473065199f
2 changed files with 44 additions and 0 deletions

View File

@ -0,0 +1,20 @@
---
- name: Deploy Docker Compose stack with pull and restart
hosts: k5bss.com
become: true
tasks:
- name: Qbits
community.docker.docker_compose_v2:
project_src: /home/justin/docker/qbits/
recreate: always
- name: Prune non-dangling images
community.docker.docker_prune:
containers: false
images: true
images_filters:
dangling: false
networks: false
volumes: false
builder_cache: false

View File

@ -68,8 +68,32 @@
project_src: /home/justin/docker/overseerr/
pull: always
recreate: auto
- name: portainer
community.docker.docker_compose_v2:
project_src: /home/justin/docker/portainer/
pull: always
recreate: auto
- name: it-tools
community.docker.docker_compose_v2:
project_src: /home/justin/docker/it-tools/
pull: always
recreate: auto
- name: termix
community.docker.docker_compose_v2:
project_src: /home/justin/docker/termix/
pull: always
recreate: auto
- name: Prune non-dangling images
community.docker.docker_prune:
containers: false
images: true
images_filters:
dangling: false
networks: false
volumes: false
builder_cache: false