1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 17:51:24 +00:00
dockerfiles/cmus/README.md
2017-04-29 12:04:18 +08:00

43 lines
688 B
Markdown

cmus
====
[cmus][1] is a small, fast and powerful console music player for Unix-like operating systems.
## docker-compose.yml
```yaml
cmus:
image: vimagick/cmus
ports:
- "3000:3000"
volumes:
- ./data:/etc/cmus
- ~/music:/root/music
devices:
- /dev/snd
environment:
- PASSWORD=secret
tty: yes
restart: unless-stopped
```
## up and running
```bash
$ docker-compose up -d
$ docker-compose exec cmus cmus-remote --help
$ docker-compose exec cmus cmus-remote --passwd secret
>>> clear
>>> add ~/music
>>> set continue=true
>>> set repeat=true
>>> set shuffle=true
>>> set resume=true
>>> player-play
>>> ^D
$ alsamixer
```
[1]: https://cmus.github.io/