mirror of
https://github.com/ansible-collections/community.docker.git
synced 2025-12-16 20:08:41 +00:00
* Add nsenter connection plugin * Fixes * oops * Pass file I/O through nsenter, removing volume mount * minor logging cleanup for consistency's sake * Fix pylint flag * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Fix note formatting * Revert string_types change * Update tests/integration/targets/connection_nsenter/aliases * Update tests/integration/targets/connection_nsenter/runme.sh * Apply suggestions from code review * Update tests/integration/targets/connection_nsenter/runme.sh * Update tests/integration/targets/connection_nsenter/runme.sh * Apply suggestions from code review * Update tests/integration/targets/connection_nsenter/runme.sh * Update tests/integration/targets/connection_nsenter/aliases * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> * Remove specific pipelining support * Update plugins/connection/nsenter.py Co-authored-by: Felix Fontein <felix@fontein.de> Co-authored-by: Felix Fontein <felix@fontein.de>
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
|