ansible-edda/playbooks/roles/services/deploy/music/vars/main.yml

29 lines
1.3 KiB
YAML
Raw Normal View History

2023-11-11 21:54:08 +01:00
---
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\""
2023-11-11 22:07:16 +01:00
- "-e ND_PASSWORDENCRYPTIONKEY=\
{{ services[services_service_name].password_encryption_key }}"
2023-11-11 21:54:08 +01:00
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\""
2023-11-11 22:07:16 +01:00
- "-e ND_PASSWORDENCRYPTIONKEY=\
{{ services[services_service_name].password_encryption_key }}"