2020-03-20 16:22:41 -04:00
|
|
|
#!/bin/sh
|
2018-07-19 14:57:07 -04:00
|
|
|
|
2021-08-30 17:52:19 -04:00
|
|
|
echo "Starting matrix-dimension"
|
|
|
|
|
2018-07-19 14:57:07 -04:00
|
|
|
if [ -f "/data/config.yaml" ]; then
|
|
|
|
cp /data/config.yaml /home/node/matrix-dimension/config/production.yaml
|
2021-08-30 17:52:19 -04:00
|
|
|
NODE_ENV=production exec node build/app/index.js
|
2018-07-19 14:57:07 -04:00
|
|
|
else
|
|
|
|
cp /home/node/matrix-dimension/config/default.yaml /data/config.yaml
|
|
|
|
echo "A default config file has been placed in the /data/ volume please review and make any required changes and start the container again"
|
|
|
|
fi
|