Compare commits

...

4 Commits

Author SHA1 Message Date
be3601b39d test 2026-03-05 18:40:53 +01:00
18267c3f71 test 2026-03-05 18:39:59 +01:00
4c11ae66e0 infra(comose): ordern umbenannt 2026-03-05 18:39:06 +01:00
6465cd9ddc dockes(netz): DHCP 2026-03-05 17:53:24 +01:00
25 changed files with 36 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

View File

@@ -2,5 +2,15 @@
## DHCP
### Fritzbox (derzeit aktuell)
- Range: 192.168.178.20 - 199
## feste IPs
192.168.178.200: Proxmox
192.168.178.203: vm-homeassistent
192.168.178.204: vm-docker
192.168.178.214: vm-jellyfin
192.168.178.217: vm-docker-restore
192.168.178.221: VM-paperless2
192.168.178.254: QNAP
### Kea-dhcp4 + Adguard # caddy

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