From 58e9e99b64760cb520a8c7cd77121c7157655d89 Mon Sep 17 00:00:00 2001 From: Michele Giacomoli Date: Sat, 21 Mar 2026 00:41:36 +0100 Subject: [PATCH] Aggiunto docker-compose.yml --- docker-compose.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 docker-compose.yml diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..cf43b87 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +services: + navidrome: + image: deluan/navidrome:latest + user: 1000:1000 # should be owner of volumes + ports: + - "4533:4533" + restart: unless-stopped + environment: + # Optional: put your config options customization here. Examples: + # ND_LOGLEVEL: debug + ND_ENABLEINSIGHTSCOLLECTOR: false + volumes: + - "./data:/data"