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
|
|
|
|
|
|
|
source ./.env
|
|
|
|
docker run -d \
|
|
|
|
--name=mstream \
|
|
|
|
-e PUID=${PUID:-1024} `# for GroupID` \
|
|
|
|
-e PGID=${PGID:-100} `# for UserID` \
|
2021-04-13 00:58:58 +00:00
|
|
|
-e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \
|
2021-04-10 10:16:29 +00:00
|
|
|
-p 3000:3000 `# The port for the mStream webinterface` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/mstream/config:/config `# mStream config` \
|
|
|
|
-v ${BASEDIR:-/volume1/docker}/mstream/music:/music `# Music location` \
|
|
|
|
--restart unless-stopped \
|
|
|
|
ghcr.io/linuxserver/mstream
|