mirror of
https://github.com/itzg/docker-minecraft-server.git
synced 2024-06-07 19:40:43 +00:00
15 lines
401 B
Plaintext
15 lines
401 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
if [ -n "$PUBLISH_ADDR" ]; then
|
||
|
echo "Enabling Doghouse access at http://$PUBLISH_ADDR:8182/doghouse"
|
||
|
sed -i "s#<base-uri>.*</base-uri>#<base-uri>http://$PUBLISH_ADDR</base-uri>#" /config/rexster.xml
|
||
|
fi
|
||
|
|
||
|
if [ -n "$SCRIPT" ]; then
|
||
|
echo "Running Gremlin script $SCRIPT from /scripts..."
|
||
|
gremlin -e /scripts/$SCRIPT
|
||
|
fi
|
||
|
|
||
|
echo "Starting Rexster..."
|
||
|
/opt/rexster-server/bin/rexster.sh $*
|