mirror of
https://github.com/Dokploy/templates.git
synced 2026-06-15 20:25:24 +02:00
Add Navidrome blueprint and metadata (#370)
* Add Navidrome blueprint and metadata Introduces Navidrome as a new blueprint with Docker Compose configuration, template, and icon. Updates meta.json to register Navidrome with relevant metadata, description, links, and tags. * Remove user and version from Navidrome compose file Deleted the 'user' field and the 'version' declaration from the docker-compose.yml for Navidrome to simplify configuration and improve compatibility. * Remove ND_BASEURL from Navidrome environment Eliminates the ND_BASEURL environment variable from the Navidrome service configuration in docker-compose.yml, likely to rely on default behavior or avoid misconfiguration.
This commit is contained in:
17
blueprints/navidrome/docker-compose.yml
Normal file
17
blueprints/navidrome/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
navidrome:
|
||||
image: deluan/navidrome:latest
|
||||
restart: unless-stopped
|
||||
environment:
|
||||
- ND_SCANSCHEDULE=1h
|
||||
- ND_LOGLEVEL=info
|
||||
- ND_SESSIONTIMEOUT=24h
|
||||
volumes:
|
||||
- navidrome-data:/data
|
||||
- navidrome-music:/music:ro
|
||||
ports:
|
||||
- 4533
|
||||
|
||||
volumes:
|
||||
navidrome-data: {}
|
||||
navidrome-music: {}
|
||||
BIN
blueprints/navidrome/navidrome.png
Normal file
BIN
blueprints/navidrome/navidrome.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.7 KiB |
12
blueprints/navidrome/template.toml
Normal file
12
blueprints/navidrome/template.toml
Normal file
@@ -0,0 +1,12 @@
|
||||
[variables]
|
||||
main_domain = "${domain}"
|
||||
|
||||
[config]
|
||||
[[config.domains]]
|
||||
serviceName = "navidrome"
|
||||
port = 4533
|
||||
host = "${main_domain}"
|
||||
|
||||
[config.env]
|
||||
|
||||
[[config.mounts]]
|
||||
20
meta.json
20
meta.json
@@ -3293,6 +3293,26 @@
|
||||
"postgres"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "navidrome",
|
||||
"name": "Navidrome",
|
||||
"version": "latest",
|
||||
"description": "Navidrome is a modern music server and streamer compatible with Subsonic/Airsonic. Stream your music collection anywhere.",
|
||||
"logo": "navidrome.png",
|
||||
"links": {
|
||||
"github": "https://github.com/navidrome/navidrome",
|
||||
"website": "https://www.navidrome.org/",
|
||||
"docs": "https://www.navidrome.org/docs/"
|
||||
},
|
||||
"tags": [
|
||||
"music",
|
||||
"streaming",
|
||||
"media-server",
|
||||
"subsonic",
|
||||
"self-hosted",
|
||||
"audio"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "neko",
|
||||
"name": "Neko",
|
||||
|
||||
Reference in New Issue
Block a user