mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-04-28 18:30:24 +02:00
19 lines
607 B
YAML
19 lines
607 B
YAML
---
|
|
- name: "include docker-central-database"
|
|
include_role:
|
|
name: docker-central-database
|
|
|
|
- name: "Include setup for domain '{{ domain }}'"
|
|
include_role:
|
|
name: nginx-domain-setup
|
|
vars:
|
|
ws_path: "/ws"
|
|
ws_port: "{{ ports.localhost.websocket[application_id] }}"
|
|
client_max_body_size: "100m"
|
|
vhost_flavour: "ws_generic"
|
|
domain: "{{ domains[application_id] }}"
|
|
http_port: "{{ ports.localhost.http[application_id] }}"
|
|
|
|
- name: "copy docker-compose.yml and env file"
|
|
include_tasks: copy-docker-compose-and-env.yml
|