|
|
本帖最后由 gavin219 于 2025-3-3 18:24 编辑
docker run -d \
--name navidrome \
--restart=unless-stopped \
-e PUID=1000 \ #根据实际情况修改
-e PGID=1000 \ #根据实际情况修改
-v /App/Docker/navidrome/music/:/music/ \ #根据实际情况修改
-v /App/Docker/navidrome/data\:/data/ \ #根据实际情况修改
-v /App/SSL/****/:/ssl/ \ #根据实际情况修改
-p 8080:4533 \ #根据实际情况修改
-e ND_TLSCERT=/ssl/certs.pem \ #根据实际情况修改
-e ND_TLSKEY=/ssl/key.pem \ #根据实际情况修改
-e ND_BASEURL=https://****.com \ #根据实际情况修改
-e ND_ENABLESHARING=true \
-e ND_UIWELCOMEMESSAGE="The Power of Music" \ #根据实际情况修改
-e ND_LOGLEVEL=info \
-e ND_SCANSCHEDULE=1h \ #根据实际情况修改
-e ND_SESSIONTIMEOUT=24h \ #根据实际情况修改
-e ND_LASTFM_APIKEY=**** \ #根据实际情况修改
-e ND_LASTFM_SECRET=**** \ #根据实际情况修改
-e ND_SPOTIFY_ID=****\ #根据实际情况修改
-e ND_SPOTIFY_SECRET=**** \ #根据实际情况修改
deluan/navidrome:latest |
|