diff options
author | jfederico <jesus@123it.ca> | 2021-03-20 00:38:04 -0400 |
---|---|---|
committer | jfederico <jesus@123it.ca> | 2021-03-20 00:38:04 -0400 |
commit | 9d07502b4e04d8276f3be1c57a0d83a9e211e34e (patch) | |
tree | ce4d8c77d4e33a4cc74c439070af9b3535225faf | |
parent | 10c8ffc5b09445bbc3068bc5720d0f8439cde9bb (diff) | |
download | scalelite-run-itzks-9d07502b4e04d8276f3be1c57a0d83a9e211e34e.tar.gz scalelite-run-itzks-9d07502b4e04d8276f3be1c57a0d83a9e211e34e.tar.bz2 scalelite-run-itzks-9d07502b4e04d8276f3be1c57a0d83a9e211e34e.zip |
updated docker-compose-dev.yml
-rw-r--r-- | docker-compose-dev.yml | 23 | ||||
-rwxr-xr-x | init-recordings-bigbluebutton.sh | 2 |
2 files changed, 2 insertions, 23 deletions
diff --git a/docker-compose-dev.yml b/docker-compose-dev.yml index ccf33ba..7418f0d 100644 --- a/docker-compose-dev.yml +++ b/docker-compose-dev.yml @@ -77,34 +77,13 @@ services: logging: driver: journald - scalelite-nginx: - image: ${SCALELITE_REPO:-blindsidenetwks}/scalelite:${SCALELITE_TAG:-v1}-nginx - container_name: scalelite-nginx - restart: unless-stopped - # ports: - # - "80:80" - # - "443:443" - volumes: - - ./log/nginx/:/var/log/nginx - - ./data/certbot/conf/:/etc/nginx/ssl - - ./data/certbot/www/:/var/www/certbot - - ./data/nginx/scalelite/:/etc/nginx/conf.d/scalelite - - ${SCALELITE_RECORDING_DIR-/mnt/scalelite-recordings/var/bigbluebutton}/published:/var/bigbluebutton/published - environment: - - NGINX_SSL=${NGINX_SSL-true} - - URL_HOST=${URL_HOST} - depends_on: - - scalelite-api - scalelite-recordings: - image: ${SCALELITE_REPO:-blindsidenetwks}/scalelite:${SCALELITE_TAG:-v1}-nginx + image: bigbluebutton/bbb-playback-proxy:bionic-23-dev-alpine3.11 container_name: scalelite-recordings restart: unless-stopped volumes: - ./log/recordings/:/var/log/nginx - ${SCALELITE_RECORDING_DIR-/mnt/scalelite-recordings/var/bigbluebutton}/published:/var/bigbluebutton/published - environment: - - NGINX_RECORDINGS_ONLY=true depends_on: - scalelite-api diff --git a/init-recordings-bigbluebutton.sh b/init-recordings-bigbluebutton.sh index 414ca3a..86bd3ab 100755 --- a/init-recordings-bigbluebutton.sh +++ b/init-recordings-bigbluebutton.sh @@ -126,7 +126,7 @@ if [ -f "$CORE_SCRIPTS_DIR/scalelite.yml" ]; then fi wget https://raw.githubusercontent.com/blindsidenetworks/scalelite/master/bigbluebutton/scalelite.yml -P $CORE_SCRIPTS_DIR sed -e '/spool_dir/ s/^#*/#/' -i $CORE_SCRIPTS_DIR/scalelite.yml -echo "spool_dir: bigbluebutton@sl-spool:/var/bigbluebutton/spool" | tee -a $CORE_SCRIPTS_DIR/scalelite.yml +echo "spool_dir: bigbluebutton@scalelite-spool:/var/bigbluebutton/spool" | tee -a $CORE_SCRIPTS_DIR/scalelite.yml public_key=$(cat /home/bigbluebutton/.ssh/id_rsa.pub) set +x |