Skip to content

Instantly share code, notes, and snippets.

@Cyberboss
Last active February 1, 2019 20:09
Show Gist options
  • Save Cyberboss/12cbe75022ef51a1d54948fbd5f48026 to your computer and use it in GitHub Desktop.
Save Cyberboss/12cbe75022ef51a1d54948fbd5f48026 to your computer and use it in GitHub Desktop.
Quickly launch and join a tg test server. (Requires byond and docker installations)
@echo off
REM Shuts down when exiting dream seeker (Requires byond and docker installations)
REM remember to change the join ip if using a remote docker host
call docker pull tgstation/tgstation:latest
call docker run --rm -d --name=tg_quicktest -p 0.0.0.0:1337:1337 tgstation/tgstation:latest
call "%ProgramFiles(x86)%\BYOND\bin\dreamseeker.exe" 127.0.0.1:1337
call docker kill tg_quicktest
@Nirnael
Copy link

Nirnael commented Feb 1, 2019

For config, Cyberboss:

look at the line about replacing the config folder
-v /path/to/your/config:/tgstation/config
as a parameter when you start it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment