mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
234f0e4f79
Docker-DCO-1.1-Signed-off-by: Erik Hollensbe <github@hollensbe.org> (github: erikh)
20 lines
1.2 KiB
Text
20 lines
1.2 KiB
Text
(from "ubuntu:12.04")
|
|
(expose "27015")
|
|
(expose "27005")
|
|
(expose "26901")
|
|
(expose "27020")
|
|
(run "apt-get update && apt-get install libc6-dev-i386 curl unzip -y")
|
|
(run "mkdir -p /steam")
|
|
(run "curl http://media.steampowered.com/client/steamcmd_linux.tar.gz | tar vxz -C /steam")
|
|
(add "./script" "/steam/script")
|
|
(run "/steam/steamcmd.sh +runscript /steam/script")
|
|
(run "curl http://mirror.pointysoftware.net/alliedmodders/mmsource-1.10.0-linux.tar.gz | tar vxz -C /steam/tf2/tf")
|
|
(run "curl http://mirror.pointysoftware.net/alliedmodders/sourcemod-1.5.3-linux.tar.gz | tar vxz -C /steam/tf2/tf")
|
|
(add "./server.cfg" "/steam/tf2/tf/cfg/server.cfg")
|
|
(add "./ctf_2fort.cfg" "/steam/tf2/tf/cfg/ctf_2fort.cfg")
|
|
(add "./sourcemod.cfg" "/steam/tf2/tf/cfg/sourcemod/sourcemod.cfg")
|
|
(run "rm -r /steam/tf2/tf/addons/sourcemod/configs")
|
|
(add "./configs" "/steam/tf2/tf/addons/sourcemod/configs")
|
|
(run "mkdir -p /steam/tf2/tf/addons/sourcemod/translations/en")
|
|
(run "cp /steam/tf2/tf/addons/sourcemod/translations/*.txt /steam/tf2/tf/addons/sourcemod/translations/en")
|
|
(cmd "cd /steam/tf2 && ./srcds_run -port 27015 +ip 0.0.0.0 +map ctf_2fort -autoupdate -steam_dir /steam -steamcmd_script /steam/script +tf_bot_quota 12 +tf_bot_quota_mode fill")
|