Find a file
2021-09-22 15:24:50 -05:00
Dockerfile added symlink for serversettings.json 2021-09-21 13:18:19 -05:00
README.md Update README.md 2021-09-22 15:24:50 -05:00
run_bot.sh update script to pull latest version 2021-09-19 19:48:47 -05:00

JMusicBot Docker

Docker Pulls Docker Version Docker Image Size (tag) Docker container for JMusicBot. This uses the latest Alpine image for a small footprint.

Usage

Place your config.txt in yourpath/toconfig to map it to the container. The config folder will also contain serversettings.json if it exists. If you need to access the container you can hop into it and get a shell using:

docker exec -it jmusicbot /bin/sh

Docker CLI

docker run -dt \  
  --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