Compose stack of discord bots with redis db
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MrTuxedo 3ffb3cb63c enable inventory service 2 weeks ago
.env.sample some documentation 3 weeks ago
.gitignore Initial commit 3 weeks ago
README.md some documentation 3 weeks ago
docker-compose.yml enable inventory service 2 weeks ago

README.md

Stateful Discord Bot Stack

note, some of the bots used here are in a private git repository. make sure you are using authenticated credentials to pull them into this repo

Set up

Clone each bot into this project directory, for example:

git clone https://git.ssh.surf/MrTuxedo/gwei-alert-bot/

Populate env vars for each bot in .env: see .env.sample for expected values.

Spin up bot stack

docker compose up -d

Updates

Sometimes you may want to rebuild a bot to incorporate upstream changes without interupting the other services in the stack. To do this:

cd gwei-alert-bot
git pull
cd ..
docker compose up gwei-alert-bot --build --force-recreate -d