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

View File

@@ -61,6 +61,9 @@
- name: Deploy Immich
import_tasks: tasks/immich.yml
tags: immich_deploy
- name: Deploy Jellyfikn
- name: Deploy Jellyfin
import_tasks: tasks/jellyfin.yml
tags: jellyfin_deploy
- name: Deploy Navidrome
import_tasks: tasks/navidrome.yml
tags: navidrome_deploy

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"