File: setup.yml

package info (click to toggle)
python-mitogen 0.3.36-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,708 kB
  • sloc: python: 24,457; sh: 198; makefile: 74; perl: 19; ansic: 18
file content (17 lines) | stat: -rwxr-xr-x 480 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/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