factorio-docker/0.16/files/docker-entrypoint.sh

49 lines
1.3 KiB
Bash
Raw Normal View History

2017-12-13 17:50:16 +01:00
#!/bin/sh -x
set -euo pipefail
2017-12-13 17:50:16 +01:00
2017-12-13 19:33:51 +01:00
id
mkdir -p "$SAVES"
mkdir -p "$CONFIG"
mkdir -p "$MODS"
mkdir -p "$SCENARIOS"
mkdir -p "$SCRIPTOUTPUT"
2017-12-13 19:33:51 +01:00
if [ ! -f "$CONFIG/rconpw" ]; then
pwgen 15 1>"$CONFIG/rconpw"
2017-12-13 17:50:16 +01:00
fi
if [ ! -f "$CONFIG/server-settings.json" ]; then
cp /opt/factorio/data/server-settings.example.json "$CONFIG/server-settings.json"
2017-12-13 17:50:16 +01:00
fi
if [ ! -f "$CONFIG/map-gen-settings.json" ]; then
cp /opt/factorio/data/map-gen-settings.example.json "$CONFIG/map-gen-settings.json"
2017-12-13 17:50:16 +01:00
fi
if [ ! -f "$CONFIG/map-settings.json" ]; then
cp /opt/factorio/data/map-settings.example.json "$CONFIG/map-settings.json"
2017-12-13 17:50:16 +01:00
fi
if find -L "$SAVES" -iname \*.tmp.zip -mindepth 1 -print | grep -q .; then
2019-05-16 19:55:43 +02:00
rm -f "$SAVES"/*.tmp.zip
fi
if ! find -L "$SAVES" -iname \*.zip -mindepth 1 -print | grep -q .; then
2017-12-13 17:50:16 +01:00
/opt/factorio/bin/x64/factorio \
--create "$SAVES/_autosave1.zip" \
--map-gen-settings "$CONFIG/map-gen-settings.json" \
--map-settings "$CONFIG/map-settings.json"
2017-12-13 17:50:16 +01:00
fi
exec /opt/factorio/bin/x64/factorio \
--port "$PORT" \
2017-12-13 17:50:16 +01:00
--start-server-load-latest \
--server-settings "$CONFIG/server-settings.json" \
--server-whitelist "$CONFIG/server-whitelist.json" \
--server-banlist "$CONFIG/server-banlist.json" \
--rcon-port "$RCON_PORT" \
--rcon-password "$(cat "$CONFIG/rconpw")" \
--server-id /factorio/config/server-id.json \
"$@"