Skip to content

Latest commit

 

History

History
32 lines (25 loc) · 1.35 KB

README.md

File metadata and controls

32 lines (25 loc) · 1.35 KB

Terraria TML Docker

MIT LICENSE Docker Image Size Docker Stars Docker Pulls

Docker and docker-compose project for running a simple dedicated tModLoader server

Running

Go to the directory where you want to install the server and execute either

git clone https://github.com/Paul1365972/terraria-tml-server.git
cd terraria-tml-server
docker-compose up -d

or

docker run --rm -itd \
  --name=terraria-tml-server \
  -p 7777:7777 \
  -v "$(pwd)/logs/":"/root/.local/share/Terraria/ModLoader/Logs/" \
  -v "$(pwd)/worlds/":"/tml-server/worlds/" \
  -v "$(pwd)/mods/:/tml-server/mods/" \
  -v "$(pwd)/config/:/tml-server/config/" \
  -v "$(pwd)/mod-configs/:/root/.local/share/Terraria/ModLoader/Mod Configs/" \
  paul1365972/terraria-tml-server