Skip to content

Completely rewritten docker-compose.yml fork for JMusicBot 0.3.9, a selfhosted discord music bot due to an issue with 0.4.0. Uses a different jmusicbot image as well.

Notifications You must be signed in to change notification settings

SpherionOS/JankyMusicBot-Docker

This branch is 10 commits ahead of, 25 commits behind yojoshb/jmusicbot-docker:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

cefdaf4 · Apr 6, 2024

History

50 Commits
Apr 6, 2024
Apr 6, 2024
Apr 6, 2024
Apr 6, 2024

Repository files navigation

The Jankiest Way To Dockerize JMusicBot

By the jankiest technician to ever live

Configuration

All configuration needed for the bot is provided in the example config.txt file which can be copied/downloaded and edited. Once edited by placing bot token and owner ID, it should be stored wherever you put it as /path/to/config.txt. The reason why the docker volume is linked to config.txt is because linking a directory removes the files in /bot needed for the bot to run, so the workaround is passing through specific .txt file.

Docker CLI

docker run -dit \  
  --name=jmusicbot \  
  -v /path/to/config.txt:/bot/config.txt \
  --restart=unless-stopped \
  twosevenska/jmusicbot:0.3.9

Docker Compose

version: "3"
services:
  jmusicbot:
    image: twosevenska/jmusicbot:0.3.9
    container_name: jmusicbot
    volumes:
      - /path/to/config.txt:/bot/config.txt
    restart: unless-stopped

About

Completely rewritten docker-compose.yml fork for JMusicBot 0.3.9, a selfhosted discord music bot due to an issue with 0.4.0. Uses a different jmusicbot image as well.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dockerfile 51.5%
  • Shell 48.5%