From d1258008c19a1e4c05af58a8de3a98be823f1a5e Mon Sep 17 00:00:00 2001 From: Florian Kinder Date: Wed, 30 May 2018 20:37:46 +0200 Subject: [PATCH] Added catch all to allow custom options for factorio (#169) --- 0.16/files/docker-entrypoint.sh | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/0.16/files/docker-entrypoint.sh b/0.16/files/docker-entrypoint.sh index d517271..3aee1b8 100755 --- a/0.16/files/docker-entrypoint.sh +++ b/0.16/files/docker-entrypoint.sh @@ -1,5 +1,4 @@ #!/bin/sh -x - set -e id @@ -45,4 +44,5 @@ exec /opt/factorio/bin/x64/factorio \ --server-banlist $CONFIG/server-banlist.json \ --rcon-port $RCON_PORT \ --rcon-password "$(cat $CONFIG/rconpw)" \ - --server-id /factorio/config/server-id.json + --server-id /factorio/config/server-id.json \ + $@ diff --git a/README.md b/README.md index 33ec4f7..4257309 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ sudo docker run -d \ -p 27015:27015/tcp \ -v /opt/factorio:/factorio \ --name factorio \ - --restart=always \ + --restart=always \ dtandersen/factorio ``` @@ -131,7 +131,7 @@ docker run -d \ ## Converting Scenarios to Regular Maps -If you would like to export your scenario to a saved map, you can use the example entrypoint similar to the Scenario usag above. Factorio will run once, converting the Scenario to a saved Map in your saves directory. A restart of the docker image using the standard options will then load that map, just as if the scenario were just started by the Scenarios example noted above. +If you would like to export your scenario to a saved map, you can use the example entrypoint similar to the Scenario usag above. Factorio will run once, converting the Scenario to a saved Map in your saves directory. A restart of the docker image using the standard options will then load that map, just as if the scenario were just started by the Scenarios example noted above. ``` docker run -d \