| --- | |
| # xos-bootstrap/tasks/main.yml | |
| - name: Create docker networks | |
| docker_network: | |
| name: "{{ item }}" | |
| with_items: "{{ xos_docker_networks }}" | |
| - name: Start XOS bootstrap containers | |
| docker_service: | |
| project_name: "{{ cord_profile | regex_replace('\\W','') }}bs" | |
| project_src: "{{ cord_profile_dir }}" | |
| files: "xos-bootstrap-docker-compose.yaml" | |
| register: xos_bootstrap_out |