jmusicbot-docker/README.md
2021-10-08 17:05:38 -05:00

1.2 KiB

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 -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