29 lines
1.3 KiB
YAML
29 lines
1.3 KiB
YAML
---
|
|
services_deploy_pod:
|
|
wants:
|
|
- "collection"
|
|
- "archive"
|
|
containers:
|
|
collection:
|
|
image: "docker.io/deluan/navidrome:{{ services_service_deploy_versions.navidrome }}"
|
|
podman_run_args:
|
|
- "-v {{ services_data_directory }}/pod-music/collection/_data:/data"
|
|
- "-v {{ services_host_services[services_service_name].collection_path }}:/music:ro"
|
|
- "-e ND_PORT=\"80\""
|
|
- "-e ND_IGNOREDARTICLES=\"The El La Los Las Le Les Os O A\""
|
|
- "-e ND_ENABLESTARRATING=\"false\""
|
|
- "-e ND_LASTFM_ENABLED=\"false\""
|
|
- "-e ND_PASSWORDENCRYPTIONKEY=\
|
|
{{ services[services_service_name].password_encryption_key }}"
|
|
archive:
|
|
image: "docker.io/deluan/navidrome:{{ services_service_deploy_versions.navidrome }}"
|
|
podman_run_args:
|
|
- "-v {{ services_data_directory }}/pod-music/archive/_data:/data"
|
|
- "-v {{ services_host_services[services_service_name].archive_path }}:/music:ro"
|
|
- "-e ND_PORT=\"8080\""
|
|
- "-e ND_IGNOREDARTICLES=\"The El La Los Las Le Les Os O A\""
|
|
- "-e ND_ENABLESTARRATING=\"false\""
|
|
- "-e ND_LASTFM_ENABLED=\"false\""
|
|
- "-e ND_PASSWORDENCRYPTIONKEY=\
|
|
{{ services[services_service_name].password_encryption_key }}"
|