Compare commits

...

2 commits

Author SHA1 Message Date
criz
cdd825916a navidrome.toml 2025-09-03 01:08:54 +02:00
criz
010ee246dd Changement Structure 2025-09-03 00:55:53 +02:00
17 changed files with 21 additions and 5 deletions

19
.gitignore vendored
View file

@ -2,10 +2,23 @@
/*
!/*/
# Ignore everything in immediate subdirectories
/*/*
!/*/compose.yml*
# Keep the Containers folder
!/Containers/
# Ignore everything inside Containers/*
/Containers/*/*
!/Containers/*/compose.yml*
# Some (safe) configs files
!/Containers/Navidrome/data/
/Containers/Navidrome/data/*
!/Containers/Navidrome/data/navidrome.toml
# Scripts
!/Scripts/*
# Keep utility files in root
!.gitignore
!start_all.sh
!stop_all.sh

View file

@ -0,0 +1,2 @@
[scanner]
PurgeMissing = "always"

1
Scripts/README.md Normal file
View file

@ -0,0 +1 @@
Pas encore utilisé

View file

@ -1,3 +1,3 @@
for d in */ ; do
for d in Containers/*/ ; do
docker compose -f "$d/compose.yml" up -d
done

View file

@ -1,4 +1,4 @@
for d in */ ; do
for d in Containers/*/ ; do
docker compose -f "$d/compose.yml" down
done