mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-02-23 12:51:54 +01:00
60 lines
1.6 KiB
YAML
60 lines
1.6 KiB
YAML
---
|
|
- name: "include docker-compose role"
|
|
include_role:
|
|
name: docker-compose
|
|
|
|
# Leave this in the code until big blue button was working for a while.
|
|
# This is necessary due to the reason that big blue button wasn't fully tested after refactoring
|
|
#
|
|
#- name: "include task certbot-matomo.yml"
|
|
# include_tasks: certbot-matomo.yml
|
|
#
|
|
#- name: configure {{domain}}.conf
|
|
# template:
|
|
# src: "nginx-proxy.conf.j2"
|
|
# dest: "{{nginx.directories.http.servers}}{{domain}}.conf"
|
|
# notify: restart nginx
|
|
|
|
- name: "include tasks nginx-docker-proxy-domain.yml"
|
|
include_tasks: nginx-docker-proxy-domain.yml
|
|
|
|
- name: configure websocket_upgrade.conf
|
|
copy:
|
|
src: "websocket_upgrade.conf"
|
|
dest: "{{nginx.directories.http.maps}}websocket_upgrade.conf"
|
|
notify: restart nginx
|
|
|
|
- name: pull docker repository
|
|
git:
|
|
repo: "https://github.com/bigbluebutton/docker.git"
|
|
dest: "{{docker_compose.directories.instance}}"
|
|
update: yes
|
|
recursive: yes
|
|
version: main
|
|
notify: setup bigbluebutton
|
|
ignore_errors: true
|
|
|
|
- name: deploy .env
|
|
template: src=env.j2 dest={{docker_compose.directories.instance}}/.env
|
|
notify: setup bigbluebutton
|
|
|
|
- name: flush docker service
|
|
meta: flush_handlers
|
|
|
|
- name: wait for database
|
|
pause:
|
|
seconds: "{{pause_duration}}"
|
|
when: mode_setup | bool
|
|
|
|
- name: create admin
|
|
command:
|
|
cmd: docker compose exec greenlight bundle exec rake admin:create
|
|
chdir: "{{docker_compose.directories.instance}}"
|
|
when: mode_setup | bool
|
|
ignore_errors: true
|
|
register: admin_creation_result
|
|
|
|
- name: print admin user data
|
|
debug:
|
|
msg: "{{ admin_creation_result.stdout }}"
|
|
when: mode_setup | bool |