https://github.com/phartenfeller/ttt-docker
Docker Gameserver for GMOD / Trouble in Terrorist Town
https://github.com/phartenfeller/ttt-docker
docker gameserver gmod ttt
Last synced: 15 days ago
JSON representation
Docker Gameserver for GMOD / Trouble in Terrorist Town
- Host: GitHub
- URL: https://github.com/phartenfeller/ttt-docker
- Owner: phartenfeller
- Archived: true
- Created: 2021-07-06T18:31:27.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-06T23:05:09.000Z (over 3 years ago)
- Last Synced: 2025-05-02T15:13:54.630Z (17 days ago)
- Topics: docker, gameserver, gmod, ttt
- Language: Dockerfile
- Homepage:
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Trouble in Terrorist Town
```sh
docker run -d -t \
-p 27015:27015 -p 27015:27015/udp -p 27005:27005 -p 27005:27005/udp \
--name gmod-ttt \
--env-file path/to/your/ttt.env \
ghcr.io/phartenfeller/trouble-in-ttown:latest
```## Env file
```sh
HOSTNAME=my-ttt-server
MAXPLAYERS=20
HOST_WORKSHOP_COLLECTION=45415314654 # your workshop collection ID from the URL
RCON_PASS=secret_password
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PORT=27015
GAMEMODE=terrortown
MAP=gm_construct
```## Debug
Enter with shell:
```sh
docker run -it -t \
-p 27015:27015 -p 27015:27015/udp -p 27005:27005 -p 27005:27005/udp \
--name gmod-ttt-debug \
--env-file path/to/your/ttt.env \
--rm \
ghcr.io/phartenfeller/trouble-in-ttown:latest
```