From 880fe20833dcf7fee5478a78e44a48c67b2a1373 Mon Sep 17 00:00:00 2001 From: josh Date: Sun, 19 Sep 2021 19:14:43 -0500 Subject: [PATCH] updated README --- README.md | 27 ++++++++++++++++++++++++++- 1 file changed, 26 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index fb4f731..607824e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,27 @@ # jmusicbot-docker -docker container for https://github.com/jagrosh/MusicBot +docker container for [JMusicBot](https://github.com/jagrosh/MusicBot) + +## Usage +[JMusicBot](https://github.com/jagrosh/MusicBot) + +### Docker +Usage: `docker run -it -v yourpath/toconfig:/config yojoshb/jmusicbot:latest` + +Place your config.txt in `yourpath/toconfig` to map it to the container. + +--- +### Docker Compose + +```bash +--- +version: "2" +services: + musicbot: + image: yojoshb/jmusicbot + container_name: musicbot + volumes: + - /yourpath/toconfig:/config + restart: unless-stopped +``` + +Place your config.txt in `yourpath/toconfig` to map it to the container.