add navidrome
All checks were successful
Deploy Containers / Prepare (push) Successful in 26s

This commit is contained in:
2025-07-29 23:25:09 -04:00
parent 9f07937682
commit 286c418492
2 changed files with 23 additions and 1 deletions

19
tasks/navidrome.yml Normal file
View File

@@ -0,0 +1,19 @@
---
- name: Create folder structure
file:
path: "{{ item }}"
state: directory
with_items:
- "{{ data_dir }}/navidrome"
- name: Create Navidrome Docker Container
docker_container:
name: navidrome
image: deluan/navidrome:latest
restart_policy: unless-stopped
recreate: true
networks:
- name: homelab
volumes:
- "{{ data_dir }}/navidrome:/data"
- "{{ NAVIDROME_MUSIC_PATH }}:/music:ro"