Add navidrome
This commit is contained in:
parent
2d5e4f2aeb
commit
773af0551b
2 changed files with 29 additions and 1 deletions
|
|
@ -20,3 +20,6 @@ DB_DATA_LOCATION=./postgres
|
||||||
DB_PASSWORD=postgres
|
DB_PASSWORD=postgres
|
||||||
DB_USERNAME=postgres
|
DB_USERNAME=postgres
|
||||||
DB_DATABASE_NAME=immich
|
DB_DATABASE_NAME=immich
|
||||||
|
|
||||||
|
# navidrome
|
||||||
|
SEAFILE_ZIC=/srv/data/seafile
|
||||||
25
09-navidrome/docker-compose.navidrome.yml
Normal file
25
09-navidrome/docker-compose.navidrome.yml
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
services:
|
||||||
|
navidrome:
|
||||||
|
container_name: navidrome
|
||||||
|
image: deluan/navidrome:latest
|
||||||
|
user: 1000:1000 # should be owner of volumes
|
||||||
|
ports:
|
||||||
|
- "4533:4533"
|
||||||
|
restart: unless-stopped
|
||||||
|
environment:
|
||||||
|
# Optional: put your config options customization here. Examples:
|
||||||
|
# ND_LOGLEVEL: debug
|
||||||
|
volumes:
|
||||||
|
- navidrome-data:/data
|
||||||
|
- type: bind
|
||||||
|
source: ${SEAFILE_ZIC}
|
||||||
|
target: /music
|
||||||
|
read_only: true
|
||||||
|
bind:
|
||||||
|
propagation: rslave
|
||||||
|
privileged: true
|
||||||
|
cap_add:
|
||||||
|
- SYS_ADMIN
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
navidrome-data:
|
||||||
Loading…
Add table
Add a link
Reference in a new issue