2020-06-05 19:25:27 +00:00
|
|
|
#!/usr/bin/with-contenv bash
|
|
|
|
|
2020-06-12 21:57:48 +00:00
|
|
|
UMASK_SET=${UMASK_SET:-022}
|
|
|
|
umask "$UMASK_SET"
|
|
|
|
|
2022-02-10 15:29:37 +00:00
|
|
|
cd /
|
2020-06-05 19:25:27 +00:00
|
|
|
|
2021-03-29 08:58:34 +00:00
|
|
|
if [ ! -z ${INTPORT} ]; then
|
|
|
|
port=$INTPORT
|
|
|
|
else
|
|
|
|
port=6595
|
|
|
|
fi
|
|
|
|
|
2022-02-10 15:29:37 +00:00
|
|
|
export DEEMIX_DATA_DIR=/config/
|
|
|
|
export DEEMIX_MUSIC_DIR=/downloads/
|
|
|
|
export DEEMIX_SERVER_PORT=$port
|
|
|
|
export DEEMIX_HOST=0.0.0.0
|
2021-05-29 23:10:34 +00:00
|
|
|
|
|
|
|
echo "[services.d] Starting Deemix"
|
2022-02-11 10:57:38 +00:00
|
|
|
s6-setuidgid abc node /deemix-docker/server/dist/app.js --host 0.0.0.0
|