updated README
This commit is contained in:
parent
fe12442081
commit
880fe20833
1 changed files with 26 additions and 1 deletions
27
README.md
27
README.md
|
|
@ -1,2 +1,27 @@
|
||||||
# jmusicbot-docker
|
# 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.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue