chore: initial commit for Bruchtal Docker + deploy

This commit is contained in:
Bruchtal Admin
2026-02-21 18:57:26 +01:00
commit 822a62bd60
20 changed files with 406 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
# Adguardhome
## Allgemein
- Image: `adguard/adguardhome:v0.107.69`
- Port: `3000`
- Restart Policy: `unless-stopped`
## Volumes
| Host Path | Container Path | Zweck |
|------------|----------------|--------|
| /docker/Daten/adguardhome/conf| /opt/adguardhome/conf | Konfiguration |
| /docker/Daten/adguardhome/work| /opt/adguardhome/work | Datenbank & Inhalte |
## Deployment
```bash
cd /docker/Bruchtal/docker/adguardhome
git pull
docker compose pull
docker compose up -d

View File

View File

@@ -0,0 +1,23 @@
# Heimdall
## Allgemein
- Image: `lscr.io/linuxserver/heimdall:2.7.6`
- Port: `1280:80`, `12443:443`
- Restart Policy: `unless-stopped`
## Volumes
| Host Path | Container Path | Zweck |
|------------|----------------|--------|
| /docker/Bruchtal/docker/heimdall/data/config:/config | /config | Konfiguration |
## Deployment
```bash
cd /docker/Bruchtal/docker/heimdall
git pull
docker compose pull
docker compose up -d
``

View File

@@ -0,0 +1,24 @@
# Wikijs
## Allgemein
- Image: `linuxserver/wikijs:2.5.312`
- Port: `3000`
- Restart Policy: `unless-stopped`
## Volumes
| Host Path | Container Path | Zweck |
|------------|----------------|--------|
| /docker/Daten/wikijs/config | /config | Konfiguration |
| /docker/Daten/wikijs/data | /data | Datenbank & Inhalte |
| /docker/Daten/wikijs/backup | /backup | Backups |
## Deployment
```bash
cd /docker/Bruchtal/docker/wikijs
git pull
docker compose pull
docker compose up -d
``