added navidrome

This commit is contained in:
dominikhoebert 2024-08-02 17:30:36 +02:00
parent 9ec3687d8f
commit c4517d7c95
3 changed files with 32 additions and 1 deletions

2
.gitignore vendored
View File

@ -44,3 +44,5 @@ vaultwarden/vw-data/
heimdall/config/ heimdall/config/
free-games-claimer/data/ free-games-claimer/data/
gitea/data/ gitea/data/
navidrome/data/
navidrome/music/

View File

@ -86,7 +86,7 @@ docker network create --driver bridge proxy
- https://github.com/claabs/epicgames-freegames-node 3003 - https://github.com/claabs/epicgames-freegames-node 3003
- https://github.com/vogler/free-games-claimer 6080 - https://github.com/vogler/free-games-claimer 6080
- https://about.gitea.com/ 3004 222 - https://about.gitea.com/ 3004 222
- https://www.navidrome.org/ - https://www.navidrome.org/ 4533
- https://github.com/linuxserver/docker-webtop - https://github.com/linuxserver/docker-webtop
- https://www.kasmweb.com/ - https://www.kasmweb.com/
- https://tailscale.com/ - https://tailscale.com/

29
navidrome/compose.yml Normal file
View File

@ -0,0 +1,29 @@
# https://www.navidrome.org/
# https://www.navidrome.org/demo/
# Navidrome allows you to enjoy your music collection from anywhere, by making it available through a modern Web UI and through a wide range of third-party compatible mobile apps, for both iOS and Android devices
name: navidrome
services:
navidrome:
container_name: navidrome
image: deluan/navidrome:latest
user: 1000:1000 # should be owner of volumes
ports:
- 4533:4533
environment:
# Optional: put your config options customization here. Examples:
ND_SCANSCHEDULE: 1h
ND_LOGLEVEL: info
ND_SESSIONTIMEOUT: 24h
ND_BASEURL: ""
volumes:
- ./data:/data
- ./music:/music:ro
networks:
- proxy
networks:
proxy:
external: true