How to Close Docker & Launch Tarkov On Launch

I forget to close Docker every time I launch the game, so after pissing off the people I play with enough times. I finally spent a little bit setting this up.

It's just a quick bat script that will call the docker command to stop your containers, then it kills docker desktop and launches the Tarkov launcher.

u/echo off

FOR /f "tokens=*" %%i IN ('docker ps -q') DO docker stop %%i

taskkill /F /im "Docker Desktop.exe"

START "Tarkov" "INSERT YOUR TARKOV LAUNCHER PATH HERE"

My game launcher path is "C:Battlestate GamesBsgLauncherBsgLauncher.exe".

Yours could be different, to get your path:

  1. Right click the launcher short cut on your desktop or in the start menu.
  2. Click properties and grab path listed under Target in the ShortCut tab.

To create the bat file:

  1. Create a new .txt file on your desktop.
  2. Paste the script inside the text file, then save and close.
  3. Right click the txt file, click rename, and change .txt to .bat
  4. Hit Enter, and click yes to the popup.

If you wanna get fancy you can create a shortcut for the bat script, and give it the same Tarkov launcher icon.

Source: https://www.reddit.com/r/EscapefromTarkov/comments/lyfcum/how_to_close_docker_launch_tarkov_on_launch/

leave a comment

Your email address will not be published. Required fields are marked *