WG-Easy: A Simple and Secure Way to Set Up WireGuard VPNs
…How to Install and Run WG-Easy using Docker We’ll look at the steps on how to install and run WG-Easy using Docker below, but before we do, let’s…
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 - WunderTech…How to Install and Run WG-Easy using Docker We’ll look at the steps on how to install and run WG-Easy using Docker below, but before we do, let’s…
…Create a new file named docker-compose.yml nano docker-compose.yml 5. Paste the contents below into the docker-compose file. version: '3' services: app: image: 'jc21/nginx-proxy-manager:latest…
…Depending on the location of your Docker instance, the Docker Compose file will be different, but I’ll provide two examples below. One for a generic Docker implementation and one for a…
…This automatically creates a shared folder called docker on your NAS. 2. Inside the docker folder, create a folder named pihole . Inside that folder, create two subfolders: pihole and dnsmasq.d . These…
Today we are going to take a look at how to set up Home Assistant on a Raspberry Pi using Docker. My reason for using Home Assistant with Docker is because the…
…Select the Deploy Connector button so that we can create our Docker Container on our Synology NAS. 5. Select Docker and then select Generate Tokens . You will have to authenticate (for security…
Today we are going to take a look at how to install Grafana on a Synology NAS using Docker . Grafana is a tool that allows you to make tons of different customized…
I’ve run both Jellyfin and Emby — most recently on a Synology DS1019+ before I moved to a Docker-first setup, and the honest answer is that they’re more similar than…
Today we are going to install AdGuard Home on OpenMediaVault using Docker and Portainer. AdGuard Home is fairly straight forward to set up on OpenMediaVault and we will be using Portainer to…
…Proxmox is the hypervisor, while Docker is a container platform for running applications. Proxmox vs Docker How to Set Up Docker in Proxmox For most people, I like running Docker inside a…