mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-29 19:43:34 +01:00
10 lines
173 B
Bash
10 lines
173 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
export NODE_ENV=production
|
||
|
cd /app
|
||
|
dockerize \
|
||
|
-wait tcp://redis:6379 \
|
||
|
-template /app/config/default.yml.tmpl:/app/config/default.yml \
|
||
|
node app.js
|
||
|
|