Docker

You can just download the docker-compose.yml and .env file and run docker compose to start up the image. If you want to change the bind location of the configs, go into the .env file and change the location to whatever you like.

Linux

Make sure you have docker, as well as docker compose installed on your system. If docker is not running, activate it with sudo systemctl start docker

mkdir ScpToolsBot

cd ScpToolsBot

curl -L https://raw.githubusercontent.com/Vxrpenter/SCPToolsBot/master/docker-compose.yml

curl -L https://raw.githubusercontent.com/Vxrpenter/SCPToolsBot/master/.env

sudo docker compose up

If you want to build the image yourself you have to clone the repository and change the docker-compose.yml to this.

services:
  bot:
    build: .
    ports:
      - "8080:8080"
    volumes:
      - ${CONFIG_PATH}/SCPToolsBot/:/bot/SCPToolsBot/

Last updated