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.
21 lines
516 B
YAML
21 lines
516 B
YAML
4 years ago
|
- name: Start containers
|
||
|
hosts: all
|
||
|
strategy: mitogen_free
|
||
|
gather_facts: false
|
||
|
tasks:
|
||
|
- name: Fetch container images
|
||
|
docker_image:
|
||
|
name: "{{ docker_base }}"
|
||
|
delegate_to: localhost
|
||
|
|
||
|
- name: Start containers
|
||
|
docker_container:
|
||
|
name: "{{ inventory_hostname }}"
|
||
|
image: "{{ docker_base }}"
|
||
|
command: /bin/bash
|
||
|
hostname: "mitogen-{{ inventory_hostname }}"
|
||
|
detach: true
|
||
|
interactive: true
|
||
|
tty: true
|
||
|
delegate_to: localhost
|