Docker enhancements

This commit is contained in:
JustArchi
2017-10-07 17:26:08 +02:00
parent 334488919f
commit 8fa58a4841
6 changed files with 27 additions and 3 deletions

View File

@@ -0,0 +1,8 @@
#!/bin/bash
set -eu
cd "$(dirname "$(readlink -f "$0")")"
while [[ -f ArchiSteamFarm.dll ]]; do
dotnet ArchiSteamFarm.dll --service # We will abort the script if ASF exits with an error
sleep 1
done