This is a discord bot written in Go. It is a work in progress.
The discord bot uses the following environment variables:
Variable Name | Description |
---|---|
token |
The discord authentication token |
- soon
The docker image is available on GitHub Container Registry
docker run -d \
--name discordbot \
-e token=your_token \
ghcr.io/d151l/discordbot:master
version: "3.8"
services:
discordbot:
container_name: "discordbot"
image: ghcr.io/d151l/discordbot:master
restart: always
pull_policy: always
environment:
- token=your_token