chore: release 0.2.0+0.58.0
Some checks reported errors
continuous-integration/drone/tag Build encountered an error

Make the music path configurable via env var & bump to latest release version image
This commit is contained in:
Andrew Salib
2025-10-31 15:03:40 +11:00
parent b7b6425972
commit ae8e17d4ce
5 changed files with 17 additions and 4 deletions

View File

@ -17,6 +17,7 @@ steps:
DOMAIN: {{ .Name }}.swarm-test.autonomic.zone
STACK_NAME: {{ .Name }}
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
@ -26,7 +27,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.middlewares=${STACK_NAME}-redirect"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLForceHost=true"
- "traefik.http.middlewares.${STACK_NAME}-redirect.headers.SSLHost=${DOMAIN}"
- "coop-cloud.${STACK_NAME}.version=0.1.0+pr-3349"
- "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