Proxmox vs Docker: Best Option to Use in 2026?
I’ve been running Proxmox as my main hypervisor for over five years, and one of the most common questions I see is whether someone should use Proxmox or Docker . The short…
Tracked topic
Docker is a platform that uses Linux kernel features to run applications in isolated containers, providing tools such as Docker Engine, Docker Desktop, and Docker Compose.
Docker containers are portable, lightweight, and self-contained. Instead of installing every application directly on the host operating system, you run each service inside its own container with its own configuration, ports, and persistent storage. The biggest advantage is portability. If you have your Docker Compose file and the data stored in your volumes or bind mounts, you can usually move the container to a different server without rebuilding everything from scratch. That is why I like Docker so much for home labs. You can run a lot of services without creating a full virtual machine for
Docker Guides: Setup, Compose, Containers, Updates, Backups, and Self-Hosting - WunderTechThere are a lot of places you can run Docker, and I’ve run it just about everywhere. The “best” option depends on what hardware or platform you already use. How to Configure Docker in Proxmox How to Use Docker on a Synology NAS How to Use Docker on TrueNAS Scale How to Use Docker on OpenMediaVault How to Install Docker and Portainer on Ubuntu How to Install Docker and Portainer on Debian For most people using Proxmox, I like running Docker inside a Linux VM. You get the benefits of Proxmox snapshots, backups, and VM isolation, while still using Docker Compose for the actual applications.
Docker Guides: Setup, Compose, Containers, Updates, Backups, and Self-Hosting - WunderTechDocker macvlan gives containers their own MAC address and IP address on your physical network, eliminating the need for NAT or port mapping. It’s most useful when a container needs to appear as a real device on a specific subnet — common for Wake-on-LAN tools, network scanners, and IoT management containers that need to be on a dedicated VLAN.
Docker Macvlan on a VLAN: Give Containers Their Own IP - WunderTechNot by default. Macvlan isolates the container from the host at the network level, so the container can talk to other devices on the VLAN but not the machine it’s running on. To work around this, you can create a macvlan interface on the host side as well (sometimes called a shim interface), which gives the host an IP on the macvlan network.
Docker Macvlan on a VLAN: Give Containers Their Own IP - WunderTechI’ve been running Proxmox as my main hypervisor for over five years, and one of the most common questions I see is whether someone should use Proxmox or Docker . The short…
This article will be supplementary to the video below, which highlights how to add Docker and Jellyfin to the UNAS Pro using a Mini PC . This allows you to utilize the UNAS…
…Installing HACS on Docker If you’re running Home Assistant in Docker, you don’t have the add-on store available. The approach is to SSH directly into your Docker host and…
Today we are going to look at how to update a Docker container using Portainer . There are many different ways to update Docker containers, but Portainer makes the process somewhat straightforward. To…
…The three you created in Step 1 should be mapped as follows: /docker/plex/config → /config /docker/plex/transcode → /transcode /docker/plex/data → /data (or map your actual media shared folder here…
Today we are going to look at two different ways on how to update Docker containers on a Synology NAS. Last week, we looked at how to install Docker containers on a…
Today we are going to look at how to back up a Docker container. This process is the same for all Docker containers but will be demoed on a Synology NAS as…
…sudo docker run -p 8000:8000 -p 9000:9000 -p 9443:9443 --detach --name=portainer-ce --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v /volume1/docker/portainer-ce…
…How to Install Pi-hole (Raspberry Pi, Ubuntu, Proxmox, Docker) How to Run Docker in Proxmox on a VM I’ve been running Docker on Proxmox for a while now, most recently…
…The next thing we are going to run is the script to install Docker on our Raspberry Pi. Portainer is a GUI that manages Docker containers, so we need to ensure Docker…