File tree 4 files changed +14
-42
lines changed
4 files changed +14
-42
lines changed Original file line number Diff line number Diff line change 1
1
# Use the current Long Term Support (LTS) version of Node.js
2
2
FROM node:lts
3
-
4
3
# Copy the signalling server and frontend source code from the build context
5
4
COPY /SignallingWebServer /SignallingWebServer
6
5
COPY /Frontend /Frontend
7
-
8
6
# Install the dependencies for the signalling server and build the frontend
9
7
RUN SignallingWebServer/platform_scripts/bash/setup.sh --build
10
-
11
8
# Expose TCP ports 80 and 443 for player WebSocket connections and web server HTTP(S) access
12
9
EXPOSE 80
13
10
EXPOSE 443
14
11
15
12
# Expose TCP port 8888 for streamer WebSocket connections
16
13
EXPOSE 8888
14
+ EXPOSE 8888/udp
17
15
18
16
# Expose TCP port 8889 for connections from the SFU
19
17
EXPOSE 8889
20
18
19
+ # Expose TCP port 19302 for connections to Google's stun server
20
+ EXPOSE 19302
21
+
21
22
# Expose TCP port 9999 for connections from the Matchmaker
22
23
EXPOSE 9999
23
24
25
+ # Expose TCP port 19302 for connections from coturn
26
+ EXPOSE 3478
27
+ EXPOSE 3479
28
+
24
29
# Set the signalling server as the container's entrypoint
25
- ENTRYPOINT ["/usr/local/bin/node" , "/SignallingWebServer/cirrus.js" ]
30
+ ENTRYPOINT ["/usr/local/bin/node" , "/SignallingWebServer/cirrus.js" ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
2
# Copyright Epic Games, Inc. All Rights Reserved.
3
+ BASH_LOCATION=$( cd -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " & > /dev/null && pwd )
4
+
5
+ pushd " ${BASH_LOCATION} " > /dev/null
3
6
4
7
# When run from SignallingWebServer/platform_scripts/bash, this uses the SignallingWebServer directory
5
8
# as the build context so the Cirrus files can be successfully copied into the container image
6
- docker build --network=host -t ' cirrus-webserver:latest' -f ./Dockerfile ../..
7
-
9
+ docker build --network=host -t ' cirrus-webserver:latest' -f " ${BASH_LOCATION} /../../Dockerfile" " ${BASH_LOCATION} /../../.."
Original file line number Diff line number Diff line change 27
27
peerConnectionOptions=" {\" " iceServers\" " :[{\" " urls\" " :[\" " stun:" ${stunserver} " \" " ]}]}"
28
28
fi
29
29
30
- docker run --name cirrus_latest --network host --rm --entrypoint /usr/local/bin/node cirrus-webserver /opt/ SignallingWebServer/cirrus.js --peerConnectionOptions=" ${peerConnectionOptions} " --publicIp=" ${publicip} "
30
+ docker run --name cirrus_latest --network host --rm --entrypoint /usr/local/bin/node cirrus-webserver /SignallingWebServer/cirrus.js --peerConnectionOptions=" ${peerConnectionOptions} " --publicIp=" ${publicip} "
31
31
You can’t perform that action at this time.
0 commit comments