mirror of
https://github.com/firewalkwithm3/stacks.git
synced 2025-07-02 02:47:49 +08:00
first commit
This commit is contained in:
commit
149e02a10d
72 changed files with 3442 additions and 0 deletions
4
navidrome/README.md
Normal file
4
navidrome/README.md
Normal file
|
@ -0,0 +1,4 @@
|
|||
# Compose file for Navidrome
|
||||
## Environment Variables
|
||||
- ND_LASTFM_APIKEY - last.fm API key
|
||||
- ND_LASTFM_SECRET - last.fm API secret
|
30
navidrome/compose.yaml
Normal file
30
navidrome/compose.yaml
Normal file
|
@ -0,0 +1,30 @@
|
|||
services:
|
||||
navidrome:
|
||||
image: deluan/navidrome:latest
|
||||
container_name: navidrome
|
||||
networks:
|
||||
- default
|
||||
- proxy
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- ND_BASEURL=https://music.fern.garden
|
||||
- ND_REVERSEPROXYUSERHEADER=X-authentik-username
|
||||
- ND_REVERSEPROXYWHITELIST=0.0.0.0/0
|
||||
- ND_LASTFM_APIKEY=${ND_LASTFM_APIKEY}
|
||||
- ND_LASTFM_SECRET=${ND_LASTFM_SECRET}
|
||||
- ND_PLAYLISTSPATH=Playlists
|
||||
volumes:
|
||||
- navidrome_data:/data
|
||||
- /media/media/beets:/music:ro
|
||||
labels:
|
||||
caddy: music.fern.garden
|
||||
caddy.import: authentik
|
||||
|
||||
networks:
|
||||
default:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
volumes:
|
||||
navidrome_data:
|
||||
name: navidrome_data
|
Loading…
Add table
Add a link
Reference in a new issue