17 lines
446 B
Bash
17 lines
446 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
if [ ! -w . ]; then
|
||
|
echo "Please ensure the /data volume of this container is writable for user:group $UID:$GID." >&2
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
if [ ! -f /data/config.json ]; then
|
||
|
cp example-config-docker.json /data/config.json
|
||
|
echo "Didn't find a config file."
|
||
|
echo "Copied default config file to /data/config.json"
|
||
|
echo "Modify that config file to your liking, then restart the container."
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
node src/main.js --config /data/config.json
|