diff --git a/README.md b/README.md index 1b48eb3..44c694b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # join2create -A simple Discord Bot to provide JoinToCreate functionality. \ No newline at end of file +A simple Discord Bot to provide JoinToCreate functionality. +Create your Application and give the bot sufficient permissions (i gave id Admin). + +Put your Bot Key and your Channel ID in the docker-compose.yml or use this command +```docker run -d \ + --name discord-bot \ + -e BOT_TOKEN=YOUR_BOT_TOKEN_HERE \ + -e JOINTOCREATE_CHANNEL_ID=YOUR_JOINTOCREATE_CHANNEL_ID_HERE \ + git.degnedict.de/bene/join2create:latest``` \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index c47c627..86986af 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,8 +2,8 @@ version: '3.8' services: discord-bot: - image: dein-gitea-hub-username/discord-bot:latest # Verwende das Image von deinem Gitea-Hub + image: git.degnedict.de/bene/join2create:latest environment: - - BOT_TOKEN=DEIN_BOT_TOKEN_HIER - - JOINTOCREATE_CHANNEL_ID=DEINE_JOINTOCREATE_CHANNEL_ID_HIER + - BOT_TOKEN=YourBotToken + - JOINTOCREATE_CHANNEL_ID=Your-Channel-ID restart: unless-stopped