Simplify deployment: use manual NAS mount instead of CIFS driver
All checks were successful
build-and-deploy / build (push) Successful in 19s

This commit is contained in:
2025-08-04 14:23:05 -06:00
parent 7fe30560ad
commit 7f9533cfcc
2 changed files with 5 additions and 43 deletions

View File

@@ -4,10 +4,8 @@ services:
container_name: repodructor
restart: unless-stopped
volumes:
- type: volume
source: nas-music
target: /app/public/music
read_only: true
# Mount manually mounted NAS directory
- /srv/repodructor/musica:/app/public/music:ro
environment:
- NODE_ENV=production
- NUXT_HOST=0.0.0.0
@@ -15,13 +13,6 @@ services:
networks:
- principal
volumes:
nas-music:
driver_opts:
type: cifs
o: username=nucleo000,password=${NAS_PASSWORD},addr=memoria.interno.com
device: //memoria.interno.com/homes/nucleo000/musik
networks:
principal:
external: true