A small discord bot that selects a random game for us to play
There is only one environment variable required
- DISCORD_TOKEN: str, used to authenticate the bot with discord
- Create a discord bot: https://discord.com/developers/
- under the bot section grab the discord token
- build the docker image
sudo docker build -t discord_bot .
- Run the docker image passing in the discord token from your created website
sudo docker run -d --restart=always --name discord_bot -e DISCORD_TOKEN="TOKEN HERE" discord_bot