jmusicbot-docker/README.md

1.2 KiB

JMusicBot Docker

Release Docker Hub Pulls Docker Image Size (tag)

Docker container for the latest version JMusicBot

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 \
  ghcr.io/yojoshb/jmusicbot-docker

Docker Compose

---
version: "3"
services:
  jmusicbot:
    image: ghcr.io/yojoshb/jmusicbot-docker
    container_name: jmusicbot
    volumes:
      - /yourpath/toconfig:/config
    restart: unless-stopped