You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
455 B
YAML
19 lines
455 B
YAML
- name: Prepare images
|
|
hosts: all
|
|
strategy: mitogen_free
|
|
gather_facts: true
|
|
tasks:
|
|
- name: Commit containers
|
|
command: >
|
|
docker commit
|
|
--change 'EXPOSE 22'
|
|
--change 'CMD ["/usr/sbin/sshd", "-D"]'
|
|
{{ inventory_hostname }}
|
|
{{ container_image_name }}
|
|
delegate_to: localhost
|
|
|
|
- name: Stop containers
|
|
command: >
|
|
docker rm -f {{ inventory_hostname }}
|
|
delegate_to: localhost
|