To use the bot, you can use the docker-compose file and specify DISCARD_TOKEN
and ECO_API_BASE
as environment variables.
version: '3.8'
services:
discord-bot:
image: registry.thefoxon.ru/kamgames/eco-discord-bot:latest
restart: always
environment:
DISCORD_TOKEN: ''
ECO_API_BASE: 'http://127.0.0.1:3001'
ECO_API_KEY: ''
docker-compose up -d
Or you can clone the repository and build the image already in place.
gic clone https://git.thefoxon.ru/kamgames/eco-discord-bot.git eco-bot
version: '3.8'
services:
discord-bot:
build: eco-bot
restart: always
environment:
DISCORD_TOKEN: ''
ECO_API_BASE: 'http://127.0.0.1:3001'
ECO_API_KEY: ''
docker-compose up -d
Description
Languages
TypeScript
99.3%
Dockerfile
0.7%