docker container for https://github.com/jagrosh/MusicBot
| Dockerfile | ||
| README.md | ||
| run_bot.sh | ||
jmusicbot-docker
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. If you need to access the serversettings.json file, you can hop into the container to access it
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