Compare commits
2 commits
e907a77e90
...
cdd825916a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
cdd825916a | ||
![]() |
010ee246dd |
17 changed files with 21 additions and 5 deletions
19
.gitignore
vendored
19
.gitignore
vendored
|
@ -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
|
||||
|
|
2
Containers/Navidrome/data/navidrome.toml
Normal file
2
Containers/Navidrome/data/navidrome.toml
Normal file
|
@ -0,0 +1,2 @@
|
|||
[scanner]
|
||||
PurgeMissing = "always"
|
1
Scripts/README.md
Normal file
1
Scripts/README.md
Normal file
|
@ -0,0 +1 @@
|
|||
Pas encore utilisé
|
|
@ -1,3 +1,3 @@
|
|||
for d in */ ; do
|
||||
for d in Containers/*/ ; do
|
||||
docker compose -f "$d/compose.yml" up -d
|
||||
done
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
for d in */ ; do
|
||||
for d in Containers/*/ ; do
|
||||
docker compose -f "$d/compose.yml" down
|
||||
done
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue