Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bbb-lti/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM java:8-jdk AS builder

RUN mkdir -p /root/tools \
&& cd /root/tools \
&& wget http://services.gradle.org/distributions/gradle-2.12-bin.zip \
&& wget https://services.gradle.org/distributions/gradle-2.12-bin.zip \
&& unzip gradle-2.12-bin.zip \
&& ln -s gradle-2.12 gradle

Expand Down
2 changes: 1 addition & 1 deletion bigbluebutton-web/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM bbb-common-web AS builder

RUN mkdir -p /root/tools \
&& cd /root/tools \
&& wget http://services.gradle.org/distributions/gradle-3.5-bin.zip \
&& wget https://services.gradle.org/distributions/gradle-3.5-bin.zip \
&& unzip gradle-3.5-bin.zip \
&& ln -s gradle-3.5 gradle

Expand Down
4 changes: 2 additions & 2 deletions labs/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,8 @@ services:
ENABLE_REST_API: 1
PORT: 3478
ports:
- ${EXTERNAL_IP}:3478:3478/udp
- ${EXTERNAL_IP}:3478:3478/tcp
- 3478:3478/udp
- 3478:3478/tcp
networks:
- default
labels:
Expand Down