Hardened BBB Version

This commit is contained in:
2025-09-26 15:21:01 +02:00
parent fa7b1400bd
commit cbfb991e79
2 changed files with 11 additions and 8 deletions

View File

@@ -1,15 +1,18 @@
- name: Set default docker_repository_path - name: Set default docker_repository_path
set_fact: set_fact:
docker_repository_path: "{{docker_compose.directories.services}}repository/" docker_repository_path: "{{ [ docker_compose.directories.services, 'repository/' ] | path_join }}"
- name: pull docker repository - name: pull docker repository
git: git:
repo: "{{ docker_repository_address }}" repo: "{{ docker_repository_address }}"
dest: "{{ docker_repository_path }}" dest: "{{ docker_repository_path }}"
version: "{{ docker_repository_branch | default('main') }}" version: "{{ docker_repository_branch | default('main') }}"
depth: 1 single_branch: yes
update: yes depth: 1
recursive: yes update: yes
recursive: yes
force: yes
accept_hostkey: yes
notify: notify:
- docker compose build - docker compose build
- docker compose up - docker compose up

View File

@@ -25,7 +25,7 @@ docker:
services: services:
bigbluebutton: bigbluebutton:
repository: "https://github.com/bigbluebutton/docker.git" repository: "https://github.com/bigbluebutton/docker.git"
version: "main" version: "bbb3.0"
database: database:
# This is set to true to pass integration test, doesn't have any other function # This is set to true to pass integration test, doesn't have any other function
enabled: true enabled: true