mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-06-25 19:55:31 +02:00
17 lines
534 B
YAML
17 lines
534 B
YAML
---
|
|
- name: "include docker-compose role"
|
|
include_role:
|
|
name: docker-compose
|
|
|
|
- name: "include role nginx-domain-setup for {{application_id}}"
|
|
include_role:
|
|
name: nginx-domain-setup
|
|
vars:
|
|
domain: "{{ domains | get_domain(application_id) }}"
|
|
http_port: "{{ ports.localhost.http[application_id] }}"
|
|
|
|
- name: "configure pgadmin servers"
|
|
include_tasks: configuration.yml
|
|
when: applications[application_id].server_mode | bool
|
|
|
|
- include_tasks: "{{ playbook_dir }}/roles/docker-compose/tasks/create-files.yml" |