solved docker-compose naming bugs

This commit is contained in:
2023-04-19 00:03:13 +02:00
parent 0aacd81f6e
commit 7cb11a2d37
56 changed files with 147 additions and 147 deletions

View File

@@ -5,7 +5,7 @@ Role to deploy [BigBlueButton](https://bigbluebutton.org/).
### cleanup
```bash
server_docker-compose down;
docker-compose down;
docker volume rm bigbluebutton_bigbluebutton bigbluebutton_html5-static bigbluebutton_vol-freeswitch bigbluebutton_vol-kurento bigbluebutton_vol-mediasoup bigbluebutton_database
```

View File

@@ -1,5 +1,5 @@
---
- name: create server_docker-compose.yml for bigbluebutton
- name: create docker-compose.yml for bigbluebutton
command:
cmd: bash ./scripts/generate-compose
chdir: "{{docker_compose_bigbluebutton_path}}"
@@ -9,7 +9,7 @@
listen: setup bigbluebutton
- name: docker compose up bigbluebutton
command:
cmd: server_docker-compose -p bigbluebutton up -d --force-recreate
cmd: docker-compose -p bigbluebutton up -d --force-recreate
chdir: "{{docker_compose_bigbluebutton_path}}"
environment:
COMPOSE_HTTP_TIMEOUT: 600

View File

@@ -1 +1 @@
docker_compose_bigbluebutton_path: "/home/administrator/server_docker-compose/bigbluebutton/"
docker_compose_bigbluebutton_path: "/home/administrator/docker-compose/bigbluebutton/"