mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-19 23:04:25 +02:00
19 lines
495 B
YAML
19 lines
495 B
YAML
---
|
|
- name: "For '{{ application_id }}': load docker, db and proxy"
|
|
include_role:
|
|
name: cmp-db-docker-proxy
|
|
|
|
- name: "include tasks update-repository-with-files.yml"
|
|
include_tasks: utils/update-repository-with-files.yml
|
|
vars:
|
|
detached_files:
|
|
- "docker-compose.yml"
|
|
|
|
- name: "For '{{ application_id }}': create {{docker_compose.files.env}}"
|
|
template:
|
|
src: "env.j2"
|
|
dest: "{{docker_compose.files.env}}"
|
|
mode: '770'
|
|
force: yes
|
|
notify: docker compose up
|