Skip to content

ovingiv/sit.docker

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

20 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Stay in Tarkov - Dockerized

Quickly set up your personal Escape from Tarkov server in just 5 minutes..

The Linux Container, that builds the server too

Why? Because everyone should be able to build, and not rely on unknown builds from unknown sources.

Platform independent.

(for 3.7.6 - see the example)


How to use this Repo?

  1. Install DOCKER

  2. git clone https://github.com/stayintarkov/SIT.Docker

  3. cd SIT.Docker

  4. Build the server (example for SIT 1.5.1):

    docker build \
       --build-arg SIT=022caac252205e1b9ca30b3610884ad1b05d0dc1 \
       --build-arg SPT=40b999d04c68f1f52ab152d163c086a1c50f489b \
       --label SITCoop \
       -t sitcoop .

    Same, but in one line:

    docker build --build-arg SIT=022caac252205e1b9ca30b3610884ad1b05d0dc1 --build-arg SPT=40b999d04c68f1f52ab152d163c086a1c50f489b --label SITCoop -t sitcoop .

    Windows dont handle the \, use the oneliner!

  5. Run the image once:

    docker run --pull=never -v $PWD/server:/opt/server -p 6969:6969 -p 6970:6970 -it --name sitcoop sitcoop
    • ⚠️ If you don't set the -v (volume), you won't be able to do a required step!
  6. Go to your ./server directory, delete delete_me, and optionally install additional mods, make config changes, etc.

    Using -p6969:6969, you expose the port to 0.0.0.0 (meaning: open for LAN, localhost, VPN address, etc).

    You can specify -p 192.168.12.34:6969:6969 for each port if you don't want the ports to listen on all interfaces.

  7. Start your server...

docker start sitcoop
  1. ... wait a few seconds, then you can connect to http://YOUR_IP:6969

Bugs and Issues

Let me know if there are any. Feel free to submit a PR.

About

Pterodactyl Egg

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 65.2%
  • Shell 34.8%