mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-05-18 10:40:33 +02:00
25 lines
790 B
YAML
25 lines
790 B
YAML
---
|
|
- name: "include docker-central-database"
|
|
include_role:
|
|
name: docker-central-database
|
|
|
|
- name: "include role nginx-domain-setup for {{application_id}}"
|
|
include_role:
|
|
name: nginx-domain-setup
|
|
vars:
|
|
domain: "{{ domains[application_id] }}"
|
|
http_port: "{{ ports.localhost.http[application_id] }}"
|
|
|
|
- name: "Transfer Dockerfile to {{ docker_compose.directories.instance }}"
|
|
template:
|
|
src: Dockerfile.j2
|
|
dest: "{{ docker_compose.directories.instance }}Dockerfile"
|
|
notify: docker compose project build and setup
|
|
|
|
- name: "copy docker-compose.yml and env file"
|
|
include_tasks: copy-docker-compose-and-env.yml
|
|
|
|
- name: "Configure OIDC login for Moodle if enabled"
|
|
include_tasks: oidc.yml
|
|
when: applications | is_feature_enabled('oidc',application_id)
|