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

43 lines
688 B
Markdown
Raw Normal View History

2017-04-29 02:18:23 +00:00
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:
2017-04-29 04:04:18 +00:00
- ./data:/etc/cmus
2017-04-29 02:18:23 +00:00
- ~/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
2017-04-29 04:04:18 +00:00
$ alsamixer
2017-04-29 02:18:23 +00:00
```
[1]: https://cmus.github.io/