mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-14 00:41:06 +01:00
18 lines
502 B
YAML
18 lines
502 B
YAML
---
|
|
- name: "include tasks nginx-docker-proxy-domain.yml"
|
|
include_tasks: nginx-docker-proxy-domain.yml
|
|
|
|
- name: create database in central Postgres
|
|
include_role:
|
|
name: docker-postgres
|
|
when: enable_central_database | bool
|
|
|
|
- name: "include tasks update-repository-with-docker-compose.yml"
|
|
include_tasks: update-repository-with-docker-compose.yml
|
|
|
|
- name: "copy .env"
|
|
template:
|
|
src: env.j2
|
|
dest: "{{ docker_compose_instance_directory }}.env"
|
|
notify: docker compose project setup
|