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.
18 lines
480 B
YAML
18 lines
480 B
YAML
#!/usr/bin/env ansible-playbook
|
|
|
|
- name: Get base images
|
|
hosts: all
|
|
# strategy: mitogen_free
|
|
gather_facts: false
|
|
tasks:
|
|
- name: Fetch container base images
|
|
docker_image:
|
|
name: "{{ docker_base }}"
|
|
source: pull # Added in Ansible 2.8, required circa 2.12
|
|
delegate_to: localhost
|
|
|
|
- import_playbook: _container_create.yml
|
|
- import_playbook: _container_setup.yml
|
|
- import_playbook: _user_accounts.yml
|
|
- import_playbook: _container_finalize.yml
|