mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 11:58:43 +00:00
16 lines
284 B
YAML
16 lines
284 B
YAML
---
|
|
- hosts: localhost
|
|
connection: local
|
|
vars:
|
|
docker_skip_cleanup: yes
|
|
|
|
tasks:
|
|
- name: Remove docker packages
|
|
action: "{{ ansible_facts.pkg_mgr }}"
|
|
args:
|
|
name:
|
|
- docker
|
|
- docker-ce
|
|
- docker-ce-cli
|
|
state: absent
|