mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-10 04:19:24 +02:00
25 lines
426 B
YAML
25 lines
426 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
|
|
mpd:
|
|
image: easypi/mpd-arm
|
|
ports:
|
|
- "6600:6600"
|
|
- "8800:8800"
|
|
volumes:
|
|
- ./mpd.conf:/etc/mpd.conf
|
|
- ./music:/var/lib/mpd/music
|
|
- ./playlists:/var/lib/mpd/playlists
|
|
devices:
|
|
- /dev/snd
|
|
depends_on:
|
|
- icecast
|
|
restart: unless-stopped
|
|
|
|
icecast:
|
|
image: easypi/icecast-arm
|
|
ports:
|
|
- "8000:8000"
|
|
restart: unless-stopped
|