diff --git a/lsio/mstream/docker-compose.yaml b/lsio/mstream/docker-compose.yaml index 71daf24..59bedb7 100644 --- a/lsio/mstream/docker-compose.yaml +++ b/lsio/mstream/docker-compose.yaml @@ -13,12 +13,6 @@ services: - PUID=${PUID:-1024} # for UserID - PGID=${PGID:-100} - # Set username to login - - USER=admin - # Set password for user - - PASSWORD=password - # Run mStream using the config specified at `/config/config.json`, note this will mean user/password is defined in `config.json` - - USE_JSON=true/false # Specify a timezone to use for example Europe/Amsterdam - TZ=${TZ:-Europe/Amsterdam} volumes: diff --git a/lsio/mstream/docker-run.sh b/lsio/mstream/docker-run.sh index 8a3b178..efe7b84 100644 --- a/lsio/mstream/docker-run.sh +++ b/lsio/mstream/docker-run.sh @@ -7,9 +7,6 @@ docker run -d \ --name=mstream \ -e PUID=${PUID:-1024} `# for GroupID` \ -e PGID=${PGID:-100} `# for UserID` \ - -e USER=admin `# Set username to login` \ - -e PASSWORD=password `# Set password for user` \ - -e USE_JSON=true/false `# Run mStream using the config specified at `/config/config.json`, note this will mean user/password is defined in `config.json`` \ -e TZ=${TZ:-Europe/Amsterdam} `# Specify a timezone to use for example Europe/Amsterdam` \ -p 3000:3000 `# The port for the mStream webinterface` \ -v ${BASEDIR:-/volume1/docker}/mstream/config:/config `# mStream config` \