mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-17 01:16:44 +02:00
18 lines
499 B
YAML
18 lines
499 B
YAML
- name: create collabora proxy configuration file
|
|
template:
|
|
src: "nginx.conf.j2"
|
|
dest: "{{ NGINX.DIRECTORIES.HTTP.SERVERS }}{{ domains | get_domain(application_id) }}.conf"
|
|
notify: restart openresty
|
|
|
|
- name: "Include docker-compose role"
|
|
include_role:
|
|
name: docker-compose
|
|
|
|
- name: Create Docker network for Collabora
|
|
community.docker.docker_network:
|
|
name: svc-db-mariadb
|
|
state: present
|
|
ipam_config:
|
|
- subnet: "{{ networks.local[application_id].subnet }}"
|
|
|