blob: 8077a1c5ada6c18e50b75302b09f630433539425 [file] [log] [blame]
Sergiusz Bazanski65865332019-05-18 16:23:45 +02001#!/bin/bash
2
3echo "entrypoint.sh starting..."
4
5if [ ! -d /data ]; then
6 echo "/data is not mounted, exiting."
7 exit 1
8fi
9
10cd /data
11
12if [ ! -f /data/game.zip ]; then
13 echo "No save game, creating new..."
14 /factorio/bin/x64/factorio --create game
15fi
16
17echo "Running with args: $@"
18exec /factorio/bin/x64/factorio --start-server game "$@"