docker-bits/lsio/mstream/docker-compose.yaml
2021-06-04 01:43:27 +00:00

27 lines
819 B
YAML

# [Mstream](https://mstream.io/) is a personal music streaming server. You can
# use mStream to stream your music from your home computer to any device,
# anywhere. There are mobile apps available for both Android and iPhone.
---
version: "2.1"
services:
mstream:
image: ghcr.io/linuxserver/mstream
container_name: mstream
environment:
# for GroupID
- PUID=${PUID:-1024}
# for UserID
- PGID=${PGID:-100}
# Specify a timezone to use for example Europe/Amsterdam
- TZ=${TZ:-Europe/Amsterdam}
volumes:
# mStream config
- ${BASEDIR:-/volume1/docker}/mstream/config:/config
# Music location
- ${BASEDIR:-/volume1/docker}/mstream/music:/music
ports:
# The port for the mStream webinterface
- 3000:3000
restart: unless-stopped