Advanced Search
Search Results
204 total results found
Code Snippets & Notes
Kleine Codeschnipsel, Kommandozeilenbefehle und andere Notizen
Docker
Flutter
Linux
neovim
openHAB
Proxmox
TrueNAS
MediaServer
Home Assistant
Nextcloud
ACHTUNG! In diesem Buch sind nur nextcloudspezifische Tipps & Tricks dokumentiert. Installationsanleitungen sind jeweils im Buch Docker und TrueNAS zu finden, je nachdem, wie man es installieren möchte.
Overleaf
Valetudo
Windows
Ghidra
Kubernetes
Netzwerk
Unifi, PFSense, Wireguard, Netbird usw
ansible
Docker-Compose .yamls
Android
Nextcloud
Custom Windows11.iso
Unifi
Zorin OS
CLI-Tools
WinRM
Nextcloud WebDAV Link
https://sub.domain.de/remote.php/dav/files/USERNAME/Unterordner oder https://sub.domain.de/nextcloud/remote.php/webdav/USERNAME oder https://sub.domain.de/remote.php/webdav > subdirectory dann https://sub.domain.de/SUBDIRECTORY/remote.php/webdav ...
tar.gz entpacken
Linux zip gzip gunzip tar tarball archiv tar -zxvf dateiname.tar.gz https://www.cyberciti.biz/faq/linux-unix-bsd-extract-targz-file/ -z gzip compression -x execute -v verbose -f file
ssh/sftp WinSCP Laufwerk verbinden (Windows)
sshfs \\sshfs\ohuser@192.168.1.77\..\..\etc\openhab
Bitwarden
EA services: bitwarden: image: vaultwarden/server:latest container_name: bitwarden restart: unless-stopped environment: - ADMIN_TOKEN=Q9kjrfy5---IrgendeinToken---b01fPm0ysaKRLRiwL ports: - 8081:80 volumes: ...
Bookstack
Zu Beginn gab es Probleme mit Schreibrechten bei der DB, erst mit den Volumes beim Bookstack Container und dem absoluten Pfad beim MySQL Container hat es geklappt O_o MEINE-DOMAIN und MEINPW123 ersetzen HW version: '2' services: bookstack_mysql: ...
Heimdall Dashboard
WPD --- version: "2.1" services: heimdall: image: lscr.io/linuxserver/heimdall:latest container_name: heimdall environment: - PUID=1000 - PGID=1000 - TZ=Europe/Berlin volumes: - /path/to/appdata/config:/con...
Homer Dashboard
HW version: "2" services: homer: image: b4bz/homer logging: options: max-size: "100m" container_name: homer volumes: - /var/lib/docker/volumes/homer/:/www/assets ports: - 8090:8080 #environment: ...
Kimai Zeiterfassung
<MEINPW123> ersetzen https://github.com/tobybatch/kimai2/blob/main/docker-compose.yml HW (x86) version: "2" services: app: container_name: kimai image: kimai/kimai2:apache logging: options: max-size: "100m" restart:...
Nginx Proxy Manager (NPM)
HW (17.10.2024) version: '3.8' services: app: image: 'jc21/nginx-proxy-manager:2.12.1' restart: always ports: - '80:80' - '81:81' - '443:443' volumes: - data:/data - le:/etc/letsencrypt volumes: ...
VSCode
--- version: "2.1" services: code-server: image: lscr.io/linuxserver/code-server container_name: code-server environment: - PUID=1000 - PGID=1000 - TZ=Europe/Berlin - SUDO_PASSWORD=MEINPW123 volumes: ...
Wireguard VPN-Server
wg-easy WPD version: "3.8" services: wg-easy: environment: # ⚠️ Required: # Change this to your host's public address - WG_HOST=<sub.deinedomain.de> # Optional: # - PASSWORD=foobar123 # - WG_PORT=51820 ...
Zigbee2MQTT
HW version: '3.8' services: zigbee2mqtt: container_name: zigbee2mqtt image: koenkk/zigbee2mqtt logging: options: max-size: "100m" restart: unless-stopped volumes: - /var/lib/docker/volumes/zigbee2mqtt/data:/...
openHAB3
NKS version: '2.2' services: openhab: image: "openhab/openhab:3.4.2" restart: always network_mode: host volumes: - "/etc/localtime:/etc/localtime:ro" - "/etc/timezone:/etc/timezone:ro" - "openhab_addons:/openhab/...
Unifi Controller (Ubiquiti)
Stichwort Fix for ADOPTING / OFFLINE loop on Docker Unifi ControllerFalls es ein Problem gibt, mein Reddit Artikel sollte helfen:https://www.reddit.com/r/Ubiquiti/comments/v42avk/fix_for_adopting_offline_loop_on_docker_unifi/TLDR: Ports so lassen wie sie sind ...
AdGuard Home
AdBlocker Werbeblocker version: "2" services: adguardhome: image: adguard/adguardhome # network_mode: "host" container_name: adguardhome ports: - 53:53/tcp - 53:53/udp - 784:784/udp - 853:853/tcp - 30...
paperless-ngx
2025-11-25 paperless-ngx 2.20.0 https://github.com/paperless-ngx/paperless-ngx/blob/main/docker/compose services: broker: image: docker.io/library/redis:8 restart: unless-stopped volumes: - redisdata:/data db: image: docker....
Nextcloud
Empfohlen:Nextcloud AIO Manual-Install Variante siehe https://wiki.folkerts.it/books/docker/page/nextcloud-aio Nextcloud AIO Variante Anleitung für Nextcloud AIO: https://github.com/nextcloud/all-in-one Dockerhub: https://hub.docker.com/r/nextcloud/all-in...
Gitlab Community Edition (CE)
WIS ACHTUNG: Systemmindestvoraussetzungen beachten: 4-Core CPU, 4GB RAMhttps://docs.gitlab.com/ee/install/requirements.html Ansonsten legt es den Server lahm (hohe Festplatten I/Os und CPU am Limit, nichts geht mehr) version: '3.6' services: web: i...
Mattermost
WIS https://docs.mattermost.com/install/install-docker.html Installationsanleitung folgen. Hier in kurzform: git clone https://github.com/mattermost/docker cd docker cp env.example .env mkdir -p ./volumes/app/mattermost/{config,data,logs,plugins,client/p...
! Log-Datei Limit
Um eine aufblähende Dockerinstanz zu verhindern, kann ein Limitieren der Container-Logdatei helfen. docker-compose.yml logging: options: max-size: "100m" zb in homer: version: "2" services: homer: image: b4bz/homer logging: ...