1 Commits

Author SHA1 Message Date
b886e4437a chore: release 0.2.0+0.58.0
All checks were successful
continuous-integration/drone/tag Build is passing
Make the music path configurable via env var & bump to latest release version image
2025-11-06 21:16:14 +11:00
5 changed files with 22 additions and 9 deletions

View File

@ -6,7 +6,7 @@ steps:
image: git.coopcloud.tech/coop-cloud/stack-ssh-deploy:latest
settings:
host: swarm-test.autonomic.zone
stack: {{ .Name }}
stack: navidrome
generate_secrets: true
purge: true
deploy_key:
@ -14,9 +14,10 @@ steps:
networks:
- proxy
environment:
DOMAIN: {{ .Name }}.swarm-test.autonomic.zone
STACK_NAME: {{ .Name }}
DOMAIN: navidrome.swarm-test.autonomic.zone
STACK_NAME: navidrome
LETS_ENCRYPT_ENV: production
EXTRA_VOLUME: "/dev/null:/tmp/.dummy"
trigger:
branch:
- main

View File

@ -2,6 +2,9 @@ TYPE=navidrome
DOMAIN=navidrome.example.com
# ! If your files live on the host already, make sure to bind the directory below
EXTRA_VOLUME="/dev/null:/tmp/.dummy"
## Domain aliases
#EXTRA_DOMAINS=', `www.navidrome.example.com`'

View File

@ -5,7 +5,7 @@
<!-- metadata -->
* **Category**: Apps
* **Status**: 0
* **Status**: 2
* **Image**: [`navidrome`](https://hub.docker.com/r/navidrome), 4, upstream
* **Healthcheck**: No
* **Backups**: No
@ -17,8 +17,9 @@
## Quick start
* `abra app new navidrome --secrets`
* `abra app new navidrome`
* `abra app config <app-name>`
* Make sure to update the `EXTRA_VOLUME` env var if you have files on the host already, then you can [add them within the Navidrome UI later](https://www.navidrome.org/docs/usage/multi-library/#creating-additional-libraries)
* `abra app deploy <app-name>`
For more, see [`docs.coopcloud.tech`](https://docs.coopcloud.tech).

View File

@ -3,12 +3,13 @@ version: "3.8"
services:
app:
image: deluan/navidrome:pr-3349
image: deluan/navidrome:0.58.0
networks:
- proxy
volumes:
- navidrome_data:/data
- navidrome_music:/music:ro
- "${EXTRA_VOLUME}"
environment:
ND_SCANSCHEDULE: 1h
ND_LOGLEVEL: info
@ -24,9 +25,9 @@ services:
- "traefik.http.routers.${STACK_NAME}.entrypoints=web-secure"
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.scheme=https"
- "traefik.http.middlewares.${STACK_NAME}-redirect.redirectscheme.permanent=true"
- "coop-cloud.${STACK_NAME}.version=0.1.0+pr-3349"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=0.2.0+0.58.0"
networks:
proxy:

7
release/0.2.0+0.58.0 Normal file
View File

@ -0,0 +1,7 @@
## Navidrome Docker image
Bumped to latest version-tagged image: v0.58.0
## Configuration
Add support for an `EXTRA_VOLUME` to be mounted & instructions on how to setup a multi-library