mirror of
https://github.com/bigbluebutton/docker.git
synced 2025-05-15 04:54:37 +02:00
11 lines
133 B
Bash
Executable File
11 lines
133 B
Bash
Executable File
set -e
|
|
|
|
# enable nvm
|
|
. /root/.nvm/nvm.sh
|
|
|
|
if [ -n "$1" ]; then
|
|
exec "$@"
|
|
else
|
|
npm install
|
|
npm start -- --host 0.0.0.0
|
|
fi |