All checks were successful
/ Ansible Lint (push) Successful in 2m20s
Move the automatic cleanup of unused Docker data to the docker role from the docker_compose role, so that hosts, which only use Docker (like renovate) also have an automatic cleanup set up. Also use a systemd timer instead of cron.
15 lines
497 B
YAML
15 lines
497 B
YAML
- name: Ensure Docker repo is setup
|
|
ansible.builtin.import_tasks:
|
|
file: main/01_repo_setup.yaml
|
|
|
|
- name: Ensure Docker Engine and other related packages are installed
|
|
ansible.builtin.import_tasks:
|
|
file: main/02_docker_install.yaml
|
|
|
|
- name: Ensure Docker daemon configuration
|
|
ansible.builtin.import_tasks:
|
|
file: main/03_docker_config.yaml
|
|
|
|
- name: Ensure automatic cleanup of unused Docker data is set up
|
|
ansible.builtin.import_tasks:
|
|
file: main/04_docker_auto_cleanup.yaml
|