docker-bits/lsio/mstream/docker-compose.yaml

27 lines
819 B
YAML
Raw Normal View History

2021-04-21 00:55:42 +00:00
# [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.
2021-04-10 10:16:29 +00:00
---
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
2021-04-13 00:58:58 +00:00
- TZ=${TZ:-Europe/Amsterdam}
2021-04-10 10:16:29 +00:00
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