mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-17 17:26:42 +02:00
19 lines
500 B
YAML
19 lines
500 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: "0770"
|
|
force: yes
|
|
notify: docker compose up
|