Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

204 total results found

InvoiceNinja

Docker Docker-Compose .yamls

Erster Versuch auf Fernnetz ### AUF EIS GELEGT, PROBLEME MIT MYSQL ENVs? services: server: image: nginx restart: unless-stopped #env_file: env volumes: # Vhost configuration #- /var/lib/docker/volumes/invoiceninja/confi...

tmux

Code Snippets & Notes

TMUX Cheatsheet & conf https://mutelight.org/practical-tmux  ~/.tmux.conf # Ändere Präfix von STRG+B zu STRG+A set-option -g prefix C-a bind-key C-a last-window set -g mouse on setw -g aggressive-resize on Shortcut Beschreibung STRG+A, " ...

CheckMK

Docker Docker-Compose .yamls

https://docs.checkmk.com/latest/en/introduction_docker.html  name: <your project name> services: check-mk-raw: container_name: monitoring restart: always image: checkmk/check-mk-raw:2.3.0-latest #? stdin_open: true ...

Netdata

Docker Docker-Compose .yamls

    version: '3' services: netdata: image: netdata/netdata container_name: netdata pid: host network_mode: host restart: unless-stopped cap_add: - SYS_PTRACE - SYS_ADMIN security_opt: - apparmor:u...

OliveTin (Web-UI für Shell-Cmds)

Docker Docker-Compose .yamls

OliveTin https://github.com/OliveTin/OliveTin  Eikes docker-compose.yml (mit Möglichkeit für docker exec cmds) version: "3.8" services: olivetin: container_name: olivetin image: jamesread/olivetin:2024.11.18 user: root # wichtig für...

Beszel (Simples Server Monitoring)

Docker Docker-Compose .yamls

https://github.com/henrygd/beszel  Obacht: Beszel ist nicht für Remote-Server geeignet, sondern nur für IP-Adressen, die übers LAN erreichbar sind. Am besten mit einem Mesh-VPN wie Tailscale oder Netbird lösen beszel (Server) services: beszel: i...

Duplicati (Backup Tool)

Docker Docker-Compose .yamls

    --- services: duplicati: image: lscr.io/linuxserver/duplicati:2.0.8 container_name: duplicati environment: - PUID=1000 - PGID=1000 - TZ=Europe/Berlin - CLI_ARGS= #optional volumes: - config:/conf...

Aktualisierung erforderlich

Nextcloud

Fehlermeldung:Aktualisierung erforderlichBitte den Kommandozeilen-Updater verwenden, die Browser-Aktualisierung ist in der config.php deaktiviert.Für weitere Hilfen, schauen Sie bitte in die Dokumentation. Wenn ein neues Nextcloud Docker-Image gezogen wurde...

Hetzner apt update: failed to fetch

Linux

Fehler bei apt update auf einem Hetzner arm Server: E: Failed to fetch https://mirror.hetzner.com/ubuntu/packages/dists/jammy-updates/main/binary-arm64/Packages 404 Not Found [IP: 2a01:4ff:ff00::3:3 443] E: Failed to fetch https://mirror.hetzner.com/ubuntu...

Basiskonfiguration Ubuntu vServer

Linux

aktualisiert am 09.12.25 Passwort und SSH apt update apt upgrade passwd vim /etc/ssh/sshd_config #rauten weg bei permitrootlogin prohibit-password, strictmode yes und pubkeyaut yes Docker curl -fsSL https://get.docker.com -o get-docker.sh sudo sh get...

Coturn (STUN / TURN Server für Jitsi Meet)

Docker Docker-Compose .yamls

Weil einige Firewalls auf der Clientseite verhindern, sich mit UDP Port 10000 zu verbinden, um WebRTC durchzuschleusen, sollte ein TURN Server aufgesetzt werden, über den dann der Verkehr geleitet wird. Wenn UDP Ports möglich sind, stellt der STUN Server eine ...

Große Ordner löschen (rm -rf)

Linux

Mit rm (inklusive Fortschrittsanzeige und Log) https://unix.stackexchange.com/questions/255190/is-it-possible-to-determine-the-progress-of-an-rm-command  Eikes Variante, um nur den Inhalt zu löschen und nicht den Ordner selbst (/* am Ende des Pfades hi...

rclone: OneDrive, SFTP & Co. unter Linux einrichten

Linux

rclone: rsync für Cloud Storage Obacht! Nicht apt install rclone verwenden, weil alte Version, sondern zum installieren: sudo -v ; curl https://rclone.org/install.sh | sudo bash Eikes cmd mit Datum+Uhrzeit im Logfile + leere Verzeichnisse mitsynchronisier...

rsync

Linux

rsync ist ein Tool, um Dateien zu kopieren. zum Testen kann ein --dry-run am Ende des cmd angefügt werden rsync -aPh --info=progress2 --info=name0 --ignore-existing --log-file=/home/root/rsync.log "/mnt/START" "/mnt/ZIEL" oder auch rsync -aPhzv --delete --...

Stirling PDF

Docker Docker-Compose .yamls

version: '3.3' services: stirling-pdf: restart: unless-stopped image: stirlingtools/stirling-pdf:0.38.0 ports: - '8080:8080' volumes: - trainingData:/usr/share/tessdata # Required for extra OCR languages - extraCo...

DocuSeal (Docusign Alternative)

Docker Docker-Compose .yamls

https://github.com/docusealco/docuseal services: app: depends_on: postgres: condition: service_healthy image: docuseal/docuseal:1.9.8 ports: - 3000:3000 volumes: - app:/data/docuseal environment: ...

Grafana + Prometheus + Loki

Docker Docker-Compose .yamls

docker-compose.yml services: grafana: image: grafana/grafana-oss:11.5.1-ubuntu container_name: grafana hostname: grafana restart: unless-stopped environment: - GF_SERVER_ROOT_URL=https://grafana.MEINEDOMAIN.de - G...

Lokale KI mit Ollama + open-WebUI

Docker Docker-Compose .yamls

Quelle: https://www.youtube.com/watch?v=vW29hgdb05I    abgeändert für AMD Ryzen AI Max+ 395 (dockerimage ollama/ollama:rocm und devices) services: ollama: # Uncomment below for GPU support # deploy: # resources: # reservations...

Hoarder (Bookmark-Senke)

Docker Docker-Compose .yamls

  services: web: image: ghcr.io/hoarder-app/hoarder:${HOARDER_VERSION:-release} restart: unless-stopped volumes: # By default, the data is stored in a docker volume called "data". # If you want to mount a custom directory, chan...

LVM resize

Linux

Um die Größe eines Logical Volume (LV) zu erweitern, müssen folgende Befehle eingegeben werden: # Listed die Disks und ihre Partitionen lsblk # Extended das lv auf 100% sudo lvextend -l 100%VG ubuntu-vg/ubuntu-lv # nutzt resize2fs um das lv zu erweite...