Changement Structure

This commit is contained in:
criz 2025-09-03 00:55:53 +02:00
parent e907a77e90
commit 010ee246dd
16 changed files with 9 additions and 6 deletions

10
.gitignore vendored
View file

@ -1,10 +1,12 @@
# Ignore everything in the root and all subdirectories
/*
!/*/
# Ignore everything in immediate subdirectories
/*/*
!/*/compose.yml*
!/Containers/
/Containers/*/*
!/Containers/*/compose.yml*
!/Scripts/*
!.gitignore
!start_all.sh

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