ClaptrapBot/README.md

745 B

BrokenDiscordBot

Install:

The easiest method it's to use docker-compose:

docker-compose.yml:

version: '2'

services:
  botdiscord:
    image: brokenfire/brokendiscordbot 
    networks:
      - proxy
    environment:
      - PORT=8081
      - TOKEN=1111111111111 #CHANGE ME!
    labels:
      - "traefik.frontend.rule=Host:exemple.com" #CHANGE ME!
      - "traefik.port=8080"
      - "traefik.backend=botdiscord"
      - "traefik.frontend.entryPoints=http,https"
    #volumes:
    #    - "/var/run/docker.sock:/var/run/docker.sock"
    restart: always

networks:
    proxy:
       external: true 

Docker hub repo