@@ -5,10 +5,10 @@ FROM golang:1.17.5-alpine3.15
5
5
# Build arguments.
6
6
#
7
7
# Override on the docker command line with
8
- # --build-arg USE_TSL_SOCKETS =false
8
+ # --build-arg USE_TLS_SOCKETS =false
9
9
# --build-arg ENABLE_HOST_CHECK=false
10
10
#
11
- ARG USE_TSL_SOCKETS =true
11
+ ARG USE_TLS_SOCKETS =true
12
12
ARG ENABLE_HOST_CHECK=true
13
13
14
14
@@ -46,7 +46,7 @@ RUN ln -s `pwd`/apprtc/src/collider/collidermain $GOPATH/src \
46
46
&& go install collidermain
47
47
48
48
# Add Collider executable to the start.sh bash script.
49
- RUN echo -e "$GOPATH/bin/collidermain -port=8089 -tls=$USE_TSL_SOCKETS -room-server=http://localhost &\n " >> /go/start.sh
49
+ RUN echo -e "$GOPATH/bin/collidermain -port=8089 -tls=$USE_TLS_SOCKETS -room-server=http://localhost &\n " >> /go/start.sh
50
50
51
51
ENV STUNNEL_VERSION 5.60
52
52
@@ -82,7 +82,7 @@ CMD /go/start.sh
82
82
# # Instructions (Tested on Debian 11 only):
83
83
# - Download the Dockerfile from the AppRTC repo and put it in a folder, e.g. 'apprtc'
84
84
# - Build the Dockerfile into an image: 'sudo docker build apprtc/ --tag apprtc:latest'
85
- # If you want to disable TLS (not recommended) add '--build-arg USE_TSL_SOCKETS =false' to that command.
85
+ # If you want to disable TLS (not recommended) add '--build-arg USE_TLS_SOCKETS =false' to that command.
86
86
# If you want to allow connection from any remote client, add '--build-arg ENABLE_HOST_CHECK=false'.
87
87
# - Run: 'sudo docker run -p 443:443 -p 8080:8080 -p 8089:8089 --rm -ti apprtc:latest'
88
88
# The container will now run in interactive mode and output logging. If you do not want this, omit the '-ti' argument.
0 commit comments