mirror of
https://github.com/bigbluebutton/docker.git
synced 2024-11-23 00:23:25 +01:00
10 lines
173 B
Bash
Executable File
10 lines
173 B
Bash
Executable File
#!/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
|
|
|