worked on the updating the docker
This commit is contained in:
parent
bccc5b0d5f
commit
473065199f
|
|
@ -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
|
||||
|
||||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue