Find a file
2023-05-14 21:41:37 -05:00
.github/workflows Update docker-publish.yml 2023-05-14 21:41:37 -05:00
Dockerfile add symlink for Playlists directory 2021-10-08 17:01:58 -05:00
README.md Update README.md 2022-04-13 16:06:01 -05:00
run_bot.sh update script to pull latest version 2021-09-19 19:48:47 -05:00

JMusicBot Docker

Release Docker Pulls Docker Image Size (tag)

Docker container for JMusicBot. This uses the latest Minideb image for a small footprint.

Usage

Place your config.txt, Playlists folder, and serversettings.json file (if you have one) in yourpath/toconfig to map it to the container. If you need to access the container you can hop into it and get a shell using:

docker exec -it jmusicbot /bin/bash

Docker CLI

docker run -dit \  
  --name=jmusicbot \  
  -v /yourpath/toconfig:/config \
  --restart=unless-stopped \
  yojoshb/jmusicbot

Docker Compose

---
version: "2"
services:
  jmusicbot:
    image: yojoshb/jmusicbot
    container_name: jmusicbot
    volumes:
      - /yourpath/toconfig:/config
    restart: unless-stopped