2024-03-26 02:26:00 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-03-26 13:53:59 +02:00
|
|
|
if [ $(basename $(readlink $PWD)) != $(hostname) ]; then
|
2024-03-26 02:26:00 +02:00
|
|
|
echo "Incorrect directory for host"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# will skip folders with a leading "_" (indicating not used)
|
|
|
|
|
|
|
|
for d in ./[^_]*/ ; do (cd $d && docker-compose up -d && cd ..); done
|