mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-07-19 23:04:25 +02:00
18 lines
479 B
YAML
18 lines
479 B
YAML
---
|
|
- name: "include service-rdbms-central"
|
|
include_role:
|
|
name: service-rdbms-central
|
|
|
|
- name: "include role webserver-proxy-domain for {{application_id}}"
|
|
include_role:
|
|
name: webserver-proxy-domain
|
|
vars:
|
|
domain: "{{ domains | get_domain(application_id) }}"
|
|
http_port: "{{ ports.localhost.http[application_id] }}"
|
|
|
|
- name: add config.exs
|
|
template:
|
|
src: "config.exs.j2"
|
|
dest: "{{ mobilizon_host_conf_exs_file }}"
|
|
notify: docker compose up
|