Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 1.02 KB

README.md

File metadata and controls

49 lines (34 loc) · 1.02 KB

Go icon


The discord bot in Go

Description

This is a discord bot written in Go. It is a work in progress.

Getting Started

The discord bot uses the following environment variables:

Variable Name Description
token The discord authentication token

Todo

  • soon

Installation

Installations with Docker

The docker image is available on GitHub Container Registry

Docker CLI

docker run -d \
    --name discordbot \
    -e token=your_token \
    ghcr.io/d151l/discordbot:master

Docker Compose

version: "3.8"
services:
  discordbot:
        container_name: "discordbot"
        image: ghcr.io/d151l/discordbot:master
        restart: always
        pull_policy: always
        environment:
            - token=your_token