19 lines
354 B
YAML
19 lines
354 B
YAML
- hosts: docker_hosts
|
|
roles:
|
|
- docker_host
|
|
- traefik
|
|
- nextcloud
|
|
- jellyfin
|
|
- gitea
|
|
- jackett
|
|
post_tasks:
|
|
- name: Docker prune objects
|
|
docker_prune:
|
|
containers: yes
|
|
images: yes
|
|
images_filters:
|
|
dangling: false
|
|
networks: true
|
|
volumes: true
|
|
builder_cache: true
|