Skip to content

Commit

Permalink
add navidrome
Browse files Browse the repository at this point in the history
  • Loading branch information
chendelin1982 authored Mar 6, 2024
1 parent 82508e5 commit 05491e3
Show file tree
Hide file tree
Showing 6 changed files with 80 additions and 0 deletions.
26 changes: 26 additions & 0 deletions apps/navidrome/.env
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
W9_REPO=deluan/navidrome
W9_DIST=community
W9_VERSION=latest

W9_HTTP_PORT_SET=9001

#### -- Not allowed to edit below environments when recreate app based on existing data -- ####

W9_ID=navidrome
W9_HTTP_PORT=4533

W9_URL=example.com
W9_URL_REPLACE=true
W9_NETWORK=websoft9

#### ----------------------------------------------------------------------------------------- ####


# Below environment is created by navidrome: https://www.navidrome.org/docs/usage/configuration-options/#available-options
# MusicFolder > ND_MUSICFOLDER
# Optional: put your config options customization here. Examples:

ND_SCANSCHEDULE=1h
ND_LOGLEVEL=info
ND_SESSIONTIMEOUT=24h
#ND_BASEURL=
5 changes: 5 additions & 0 deletions apps/navidrome/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# CHANGELOG

## Release
### Fixes and Enhancements

3 changes: 3 additions & 0 deletions apps/navidrome/Notes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# navidrome

- ND_BASEURL?
25 changes: 25 additions & 0 deletions apps/navidrome/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# image: https://hub.docker.com/r/deluan/navidrome
# docs: https://www.navidrome.org/docs/installation/docker/

version: '3.8'

services:
navidrome:
image: $W9_REPO:$W9_VERSION
container_name: $W9_ID
restart: unless-stopped
ports:
- $W9_HTTP_PORT_SET:4533
env_file: .env
volumes:
- data:/data
- music:/music:ro

volumes:
data:
music:

networks:
default:
name: $W9_NETWORK
external: true
3 changes: 3 additions & 0 deletions apps/navidrome/src/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# About

This folder includes files mount to container and used by Websoft9
18 changes: 18 additions & 0 deletions apps/navidrome/variables.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"name": "Navidrome",
"trademark": "navidrome",
"release": false,
"fork_url": "https://github.com/navidrome/navidrome/",
"edition": [
{
"dist": "community",
"version": ["latest"]
}
],
"requirements": {
"cpu": "2",
"memory": "4",
"disk": "5",
"url": "https://www.navidrome.org/docs/installation/"
}
}

0 comments on commit 05491e3

Please sign in to comment.