infra(comose): ordern umbenannt

This commit is contained in:
2026-03-05 18:39:06 +01:00
parent 6465cd9ddc
commit 4c11ae66e0
24 changed files with 26 additions and 5 deletions

View File

@@ -15,7 +15,7 @@
## Deployment
```bash
cd /docker/Bruchtal/docker/adguardhome
cd /docker/Bruchtal/compose/adguardhome
git pull
docker compose pull
docker compose up -d

View File

@@ -10,13 +10,13 @@
| Host Path | Container Path | Zweck |
|------------|----------------|--------|
| /docker/Bruchtal/docker/heimdall/data/config:/config | /config | Konfiguration |
| /docker/Bruchtal/compose/heimdall/data/config:/config | /config | Konfiguration |
## Deployment
```bash
cd /docker/Bruchtal/docker/heimdall
cd /docker/Bruchtal/compose/heimdall
git pull
docker compose pull
docker compose up -d

View File

@@ -12,7 +12,7 @@
## Deployment
```bash
cd /docker/Bruchtal/docker/it-tools
cd /docker/Bruchtal/compose/it-tools
git pull
docker compose pull
docker compose up -d

View File

@@ -17,7 +17,7 @@
## Deployment
```bash
cd /docker/Bruchtal/docker/wikijs
cd /docker/Bruchtal/compose/wikijs
git pull
docker compose pull
docker compose up -d

8
scripts/redeploy-all.sh Normal file
View File

@@ -0,0 +1,8 @@
#!/bin/bash
cd /docker/Bruchtal/compose
for d in */; do
echo "Deploying $d"
(cd "$d" && docker compose up -d)
done

5
scripts/stop-all.sh Normal file
View File

@@ -0,0 +1,5 @@
cd /docker/Bruchtal/docker
for d in */; do
(cd "$d" && docker compose down)
done

View File

@@ -0,0 +1,8 @@
#!/bin/bash
cd /docker/Bruchtal/compose
for d in */; do
echo "Updating $d"
(cd "$d" && docker compose pull && docker compose up -d)
done