Archive for the ‘Docker’ Category
Home Lab 2025 – 15 Docker containers that instantly improve your IT environment in late 2025
Freitag, November 21st, 2025UGREEN NASync DH4300 Plus – in 10 Minuten Paperless NGX installieren
Freitag, November 21st, 2025Watchtower & Portainer – automatische Docker Updates einfach erklärt
Dienstag, November 11th, 2025Home Lab 2025 – Server Monitoring Tool ‚Beszel‘ with a Docker/Portainer Setup in Minutes and Easy to Use
Mittwoch, Oktober 22nd, 2025

To uninstall the Beszel agent run the installation script with the -u option
pi@rpi-NodeRed-01:~ $
pi@rpi-NodeRed-01:~ $ curl -sL https://get.beszel.dev -o /tmp/install-agent.sh && chmod +x /tmp/install-agent.sh && /tmp/install-agent.sh -u
Stopping and disabling the agent service…
Removed /etc/systemd/system/multi-user.target.wants/beszel-agent.service.
Removing the systemd service file…
Removing the daily update service and timer…
Removing the Beszel Agent directory…
Removing the dedicated user for the agent service…
Beszel Agent has been uninstalled successfully!
pi@rpi-NodeRed-01:~ $
Docker & Portainer – eine Schritt-für-Schritt Installationsanleitung
Mittwoch, Oktober 22nd, 2025docker run -d -p 8000:8000 -p 9443:9443 –name=portainer –restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest

Traefik – the cloud native application proxy
Samstag, September 13th, 2025Docker Setup – simple clean and easy to backup
Freitag, September 12th, 20251blu VPS Linux – WordPress in Docker einrichten
Freitag, Mai 2nd, 2025Nextcloud External Apps (via Docker) – Funktionen und Einrichtung verständlich erklärt
Samstag, April 12th, 2025Speedtest Tracker – is a self hosted application that monitors the performance and uptime of your internet connection
Mittwoch, April 9th, 2025Proxmox Virtual Environment (VE) 8.3.5 – Docker im LXC installieren
Donnerstag, April 3rd, 2025Raspberry Pi – a deep dive into the world of containers
Montag, März 24th, 2025Docker – Prune unused Docker objects
Dienstag, März 18th, 2025
Docker – takes a conservative approach to cleaning up unused objects (often referred to as „garbage collection“) such as images containers volumes and networks these objects are generally not removed unless you explicitly ask Docker to do so this can cause Docker to use extra disk space for each type of object Docker provides a prune command in addition you can use docker system prune to clean up multiple types of objects at once
# docker volume ls
# docker volume rm <volume-name>
# docker volume prune
