15 lines
341 B
Bash
15 lines
341 B
Bash
#!/bin/sh
|
|
# entrypoint.sh
|
|
|
|
# read the file that sets variables
|
|
/usr/local/bin/node /opt/media-server/index.js 43.139.191.204
|
|
# /usr/local/bin/node /opt/SignallingWebServer/cirrus.js --peerConnectionOptions="{ \""iceServers\"": [{\""urls\"": [\""stun:stun4.l.google.com:19302\""]}]}"
|
|
|
|
# run the main container command
|
|
exec "$@"
|
|
|
|
|
|
|
|
|
|
|