This project describes my personal self-hosted infrastructure setup, running on a Banana Pi M5 board.
This was meant to be just a reminder for me, but I wrote it as a guide, in case it might help someone.
It uses only free and open source software and hardware.
|
Important
The content of this repository is provided "as is", with no guarantee that the information is complete or error-free. The techniques and tools discussed here come with inherent risks. The author takes absolutely no responsibility for possible consequences due to the use of the related software.
I started this project in late 2023 as a home lab, for learning, the goal was to have an environment :
- 100% self-hosted (privacy preserving, full control over data and software)
- Secure (authentication, SSL/TLS, firewall, ad blocking, DDOS protection, rate limiting, custom DNS resolver, ...)
- Lightweight (runs smoothly with minimal hardware and software requirements)
- Container-ready (isolated, portable, scalable applications)
- Accessible (some services accessible only locally, some only through VPN, some publicly on the internet)
- Supervised (monitoring, alerting, tracking, and backup tools)
These are the tools we are going to run :
Logo | Name | Repository | Description |
---|---|---|---|
Docker | https://github.com/docker | Help to build, share, and run container applications | |
Docker Compose | https://github.com/docker/compose | Run multi-container applications with Docker | |
Portainer | https://github.com/portainer/portainer | Management platform for containerized applications | |
Sablier | https://github.com/acouvreur/sablier | Workload scaling on demand | |
Traefik | https://github.com/traefik/traefik | Modern HTTP reverse proxy and load balancer | |
Wireguard | https://github.com/WireGuard | Simple yet fast and modern VPN | |
Wireguard UI | https://github.com/ngoduykhanh/wireguard-ui | Web user interface to manage WireGuard setup | |
Pi-hole | https://github.com/pi-hole/pi-hole | Network-wide ad blocking | |
Unbound | https://github.com/NLnetLabs/unbound | Validating, recursive, and caching DNS resolver | |
Uptime Kuma | https://github.com/louislam/uptime-kuma | Easy-to-use self-hosted monitoring tool | |
Homer | https://github.com/bastienwirtz/homer | Static application dashboard | |
Dashdot | https://github.com/MauriceNino/dashdot | Minimal server dashboard and monitoring | |
Ackee | https://github.com/electerious/Ackee | Analytics tool that cares about privacy | |
Lychee | https://github.com/LycheeOrg/Lychee | Free photo-management tool | |
PhpMyAdmin | https://github.com/phpmyadmin/phpmyadmin | Web user interface to manage MySQL databases |
And also some personal applications :
- My first PHP / MySQL website from the early 2000's ! : https://github.com/Yann39/defrag-life
- A GraphQL API (Java / Spring Boot) for one of my Flutter mobile applications : https://github.com/Yann39/ccteam-graphql
All of this runs on a single Banana Pi M5 board ! With the following specifications :
|
Note
This hardware is obviously not designed for high loads, I only have a few users on my public applications, of course if you need to handle more load you might consider a better machine.
It should work on many other ARM boards such as the Raspberry Pi, and also on x86-based device by just using the right Docker image.
Here is a chart representing the global network "architecture" we are going to set up, simplified with only the most relevant services. See Network flow for more detailed schemas.
This architecture allows exposing applications to the internet while restricting access to some of them only through VPN or from the local network. It's up to you to choose the accessibility level you need for each service, you may want some to be accessible only from your local network, some only via VPN, and others to anyone from the internet.
flowchart TB
style HOSTING_PROVIDER fill:#4d683b,color:#fff
style DDNS_PROVIDER fill:#69587b,color:#fff
style INTERNET_SERVICE_PROVIDER fill:#205566,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665151,color:#fff
style CONTAINER_ENGINE fill:#664343,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style PIHOLE_CONTAINER fill:#663535,color:#fff
style SABLIER_CONTAINER fill:#663535,color:#fff
style UNBOUND_CONTAINER fill:#663535,color:#fff
style MYAPP_CONTAINER fill:#663535,color:#fff
style WIREGUARD_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style VPN_CLIENT fill:#105040,color:#fff
style PIHOLE_DNS_RECORDS fill:#806030,color:#fff
DOMAIN(example.com)
SUBDOMAIN_WIREGUARD(wireguard.example.com)
SUBDOMAIN_MYAPP(myapp.example.com)
DDNS(myddns.ddns.net)
ROUTER[public IP]
ROUTER_PORT80{{80/tcp}}
ROUTER_PORT443{{443/tcp}}
ROUTER_PORT51820{{51820/udp}}
DOCKER_WIREGUARD_PORT51820{{51820/udp}}
DOCKER_MYAPP_PORT5000{{5000/tcp}}
DOCKER_PIHOLE_PORT80{{80/tcp}}
DOCKER_PIHOLE_PORT53{{53/udp}}
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_TRAEFIK_PORT8080{{8080/tcp}}
DOCKER_UNBOUND_PORT53{{53/udp}}
DOCKER_SABLIER_PORT10000{{10000/tcp}}
TRAEFIK_ROUTER_MYAPP(myapp<br/>.example.com)
TRAEFIK_ROUTER_PIHOLE(pihole<br/>.example.com)
TRAEFIK_ROUTER_TRAEFIK(traefik<br/>.example.com)
ROOT_DNS_SERVERS[Root DNS servers]
DNS_ISP[DNS 1 & 2]
DOCKER_PIHOLE_DNS[DNS 1 & 2]
PIHOLE_DNS_PIHOLE[pihole<br/>.example.com]
PIHOLE_DNS_TRAEFIK[traefik<br/>.example.com]
subgraph VPN_CLIENT[VPN CLIENT]
WIREGUARD_CLIENT_ENDPOINT[Endpoint]
WIREGUARD_CLIENT_DNS[DNS]
end
subgraph HOSTING_PROVIDER[DOMAIN NAME REGISTRAR]
DOMAIN -->|subdomain| SUBDOMAIN_MYAPP
DOMAIN -->|subdomain| SUBDOMAIN_WIREGUARD
end
subgraph DDNS_PROVIDER[DYNAMIC DNS PROVIDER]
SUBDOMAIN_MYAPP --->|CNAME| DDNS
SUBDOMAIN_WIREGUARD --->|CNAME| DDNS
end
subgraph INTERNET_SERVICE_PROVIDER[INTERNET SERVICE PROVIDER]
DDNS --->|DynDNS| ROUTER
ROUTER --> ROUTER_PORT80
ROUTER --> ROUTER_PORT443
ROUTER --> ROUTER_PORT51820
DNS_ISP
end
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_TRAEFIK
TRAEFIK_ROUTER_MYAPP
TRAEFIK_ROUTER_PIHOLE
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARE]
REDIRECT(HTTPS redirect)
IP_WHITELISTING(IP whitelist)
SABLIER(Sablier dynamic)
BASIC_AUTH(Basic auth)
end
DOCKER_TRAEFIK_PORT80
DOCKER_TRAEFIK_PORT443
DOCKER_TRAEFIK_PORT8080
end
subgraph SABLIER_CONTAINER[SABLIER CONTAINER]
DOCKER_SABLIER_PORT10000
WAITING_PAGE(Waiting page)
end
subgraph PIHOLE_CONTAINER[PIHOLE CONTAINER]
subgraph PIHOLE_DNS_RECORDS[LOCAL DNS RECORDS]
PIHOLE_DNS_TRAEFIK
PIHOLE_DNS_PIHOLE
end
DOCKER_PIHOLE_PORT53
DOCKER_PIHOLE_PORT80
DOCKER_PIHOLE_DNS
end
subgraph WIREGUARD_CONTAINER[WIREGUARD CONTAINER]
DOCKER_WIREGUARD_PORT51820
end
subgraph MYAPP_CONTAINER[MYAPP CONTAINER]
DOCKER_MYAPP_PORT5000
end
subgraph UNBOUND_CONTAINER[UNBOUND CONTAINER]
DOCKER_UNBOUND_PORT53
end
end
end
WIREGUARD_CLIENT_ENDPOINT ---> SUBDOMAIN_WIREGUARD
WIREGUARD_CLIENT_DNS -->|Pi - Hole internal IP| DOCKER_PIHOLE_PORT53
ROUTER_PORT51820 -->|port forward| DOCKER_WIREGUARD_PORT51820
ROUTER_PORT443 ------>|port forward| DOCKER_TRAEFIK_PORT443
ROUTER_PORT80 -->|port forward| DOCKER_TRAEFIK_PORT80
DNS_ISP -->|Banana Pi M5 static IP| DOCKER_PIHOLE_PORT53
PIHOLE_DNS_TRAEFIK --->|Banana Pi internal IP| DOCKER_TRAEFIK_PORT443
PIHOLE_DNS_PIHOLE --->|Banana Pi internal IP| DOCKER_TRAEFIK_PORT443
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
TRAEFIK_ROUTER_MYAPP --> REDIRECT
TRAEFIK_ROUTER_PIHOLE --> REDIRECT
TRAEFIK_ROUTER_TRAEFIK -->|Dashboard / API| REDIRECT
IP_WHITELISTING --> BASIC_AUTH
IP_WHITELISTING --> DOCKER_PIHOLE_PORT80
REDIRECT ----> SABLIER
SABLIER <-..->|return status| DOCKER_SABLIER_PORT10000
SABLIER --->|not ready| WAITING_PAGE
SABLIER --->|ready| DOCKER_MYAPP_PORT5000
REDIRECT --> IP_WHITELISTING
DOCKER_SABLIER_PORT10000 <-.->|check status| DOCKER_MYAPP_PORT5000
BASIC_AUTH --> DOCKER_TRAEFIK_PORT8080
DOCKER_PIHOLE_DNS ---> DOCKER_UNBOUND_PORT53
UNBOUND_CONTAINER <----> ROOT_DNS_SERVERS
Basically all services will be accessible via dedicated subdomains which will point to our local network, either through dynamic DNS or through local DNS records, then a reverse proxy will be responsible for routing the requests to the right application running in Docker containers.
We can make the ISP upstream DNS (from router configuration) point to the Banana Pi IP address, so that we reroute the entire Internet traffic through Pi-hole and thus take advantage of its benefits.
In this example Traefik (traefik.example.com) and Pi-Hole (pihole.example.com) are only accessible through VPN and from the local network thanks to local DNS records and IP whitelisting, while MyApp (myapp.example.com) is also accessible from the internet publicly.
The Traefik dashboard is protected by basic authentication, and the MyApp container is started/stopped on-demand through Sablier.
You will find more details on how all this has been implemented later in this guide.
By default, there is no operating system installed on the Banana Pi. We have to install a system either on the MicroSD card or on the eMMC storage. The eMMC storage offers better performance but is limited to 16Gb, it should be enough for our needs though.
I will describe below the procedures to install a system on the MicroSD card and on the eMMC storage.
Note
This is the first thing I did to test it out, but actually installing Android is optional, you can directly format the eMMC storage then install Armbian on the eMMC storage, you will still need to execute some of the steps described below though.
From your machine (Windows 11 in my case) :
- Download Amlogic USB Burning Tool v3.1.0 (v3.2.0 seem not to work, error is raised while loading the image)
- Download latest Android image for Banana Pi M5 : 2023-03-01-bpi-m5-m2pro-tablet-android9.img.zip
- Extract it to get the 2023-03-01-bpi-m5-m2pro-tablet-android9.img file
- Execute Amlogic USB Burning Tool as Administrator
- Load Android image from "Setting -> Load img" menu
- Press SW4 button on the Banana Pi for 2/3s (don't know why and if it is really necessary, but it is specified in the doc)
- Connect the USB cable from PC to Banana Pi
- Device should be detected in Amlogic USB Burning Tool, just click "Start" and wait for the operation to complete
- Unplug the USB cable from Banana Pi and PC
- Plug in the USB-C power cable to the Banana Pi, it should boot on Android
You need to format the eMMC storage to be able to install a new system. To do that :
- Execute the same steps as above (Install Android on the eMMC storage) but unplug the USB cable during the "Formatting" step (not too early and not too late, had to do it multiple times until it worked)
- Plug in the USB-C power cable to the Banana Pi, it should boot on the MicroSD card, indeed the Banana Pi will boot on the MicroSD card only if the eMMC storage is empty
|
I decided to use Armbian as operating system, Armbian is a Linux distribution designed for ARM development boards. Unlike Raspbian, Armbian focuses on unifying the experience across many ARM single-board computers.
I first installed it on the MicroSD card, then used it to burn the Armbian image into the eMMC storage later (see install Armbian on the eMMC storage).
From your machine (Windows 11 in my case) :
- Download latest Armbian image for Banana Pi M5, choose the CLI or the GUI image depending on your preference :
- With GUI : Armbian_23.02.2_Bananapim5_bullseye_current_6.1.11_gnome_desktop.img.xz
- Without GUI (CLI) : Armbian_23.02.2_Bananapim5_bullseye_current_6.1.11.img.xz
- Extract it to get the img file
- Connect the MiroSD card to the PC
- Download Rufus (3.21 when writing this) or equivalent software to be able to write the image to the MicroSD card
- Simply select the image in Rufus and write it to the MicroSD card with the default proposed options
- Insert the MicroSD card into the Banana Pi and plug in the USB power cable, this should boot on Armbian on the MicroSD card
We will install Armbian in the eMMC storage, this setup will offer the best performances.
- Plug in the USB-C power cable of the Banana Pi M5 to boot on Armbian in the MicroSD card
- Put the Armbian image in the Banana Pi MicroSD card storage (through USB key or network or whatever), for example in /home/me/Documents
- Run
fdisk -l
command to identify the eMMC path, it should be something like /dev/mmcblk1 - Burn the image to the eMMC storage by running the command :
sudo dd if=Armbian_23.02.2_Bananapim5_bullseye_current_6.1.11_gnome_desktop.img of=/dev/mmcblk1 bs=10MB
- Remove the MicroSD card and reboot the Banana Pi M5, it should boot on Armbian on the eMMC storage
When installing Armbian, you should have been asked to create a regular user account that is sudo enabled. We will simply use that user for the whole guide.
For security reasons, do not use the root
user directly.
If you run a program as root and a security flaw is exploited, the attacker has access to the whole system without restriction.
Using a regular user, even with sudo enabled, will require running sudo
and will still prompt for the account password as an additional security step.
It is also safer in case you unintentionally issue a command that could hurt the system (like deleting system files, etc.).
Note
We may also create specific users inside Docker containers for some applications, specially when creating our own Dockerfile, but we'll clarify then whether additional permissions need to be added in case they need access to the local filesystem through a bind mount.
Generally, you'll want to leave your board in a cool, quiet corner, rather than letting it land around in your feet and having to connect a keyboard/mouse/screen every time you want to access it.
A solution is simply to access it as a remote computer via SSH, from your main computer.
In the normal Armbian images, SSH is enabled by default, so there is no additional configuration to do.
Simply use the ssh
command to establish a secure and authenticated SSH connection to the board :
ssh me@bananapim5
Enter your password then you are ready to go !
You can also use your preferred SSH client (on Windows I usually use MobaXterm).
Unless you want to be able to do some operations from outside your local network, there is no need to open the SSH port to the internet. If you do so consider using it behind a VPN (even if SSH itself is very secure).
Armbian come with default installed software that we will not use. If, like me, you chose the GUI image, let's remove some packages to save disk space.
-
Upgrade packages :
sudo apt update sudo apt upgrade
-
Remove packages we don't need :
sudo apt purge --auto-remove gimp sudo apt purge --auto-remove hexchat sudo apt purge qbittorrent sudo apt purge telegram-desktop sudo apt purge pithos sudo apt purge pidgin sudo apt purge thunderbird sudo apt purge --auto-remove geany sudo apt purge meld sudo apt purge libreoffice* sudo apt purge --auto-remove mc sudo apt purge --auto-remove transmission sudo apt purge transmission-remote-gtk sudo apt remove kazam sudo apt remove remmina sudo apt remove codium sudo apt remove mpv sudo apt remove sysstat sudo apt autoremove sudo apt autoclean
Then we can also remove unneeded locales to save some more space, using the localepurge
tool. localepurge
is a small script to recover disk space wasted for unneeded locale
files and localized man pages.
Install the package :
sudo apt install localepurge
This will automatically run the script to allow selecting the locales we want to keep, i.e. I selected :
en
en_US.UTF-8
fr
fr_CH.UTF-8
Any locale you have not selected will be purged.
If you need to run it again, execute :
sudo dpkg-reconfigure localepurge
You can also use the BleachBit utility, installed by default on Armbian, to clean the system, i.e. I run it with following options checked :
autoclean
: delete obsolete filesautoremove
: delete obsolete filesclean
: delete the APT cachepackage lists
: delete the package list cachejournald
:clean
: clean old system journals
system
broken desktop files
: delete broken application menu entries and file associationscache
: delete system cachelocalizations
: delete files for unwanted languagesrotated logs
: delete old system logstemporary files
: delete the temporary filestrash
: empty the trash
All of this should have saved some megabytes and unnecessary disk I/O.
We will place every application configuration into the /opt/apps directory, as follows :
/
|- opt
|- apps
|- traefik
|- portainer
|- phpmyadmin
|- dashdot
|- ...
Usually this directory (/opt) is reserved for any software and packages that are not part of the default installation, but feel free to choose another location.
You can already create the directory :
sudo mkdir /opt/apps
We will create the subdirectories associated with each application when we install them.
We will use Docker to containerize and run our different applications.
Docker enables to separate applications from the infrastructure, it provides the ability to package and run an application in an isolated environment called a container. Containers contain everything needed to run the application, so you don't need to rely on what's installed on the host.
Docker provides an installation script, just run it :
curl -fsSL https://get.docker.com -o get-docker.sh
sudo sh get-docker.sh
sudo rm get-docker.sh
sudo docker version
Note
You can use https://get.docker.com/rootless to install it in rootless mode (run the Docker daemon as a non-root user) to mitigate potential vulnerabilities in the daemon and the container runtime.
Then also install Docker-Compose, so we can define and run multi-container Docker applications :
sudo apt install docker-compose -y
sudo docker-compose version
That's it :
sudo docker info
Client:
Context: default
Debug Mode: false
Plugins:
buildx: Docker Buildx (Docker Inc.)
Version: v0.10.4
Path: /usr/libexec/docker/cli-plugins/docker-buildx
compose: Docker Compose (Docker Inc.)
Version: v2.17.3
Path: /usr/libexec/docker/cli-plugins/docker-compose
Note
In this guide I systematically use latest images (:latest
tag), but usually you better want to avoid using :latest
tags in production.
Anyway if you use latest
tags and want to update an image in the future, simply pull it again and rerun your container / compose file, i.e. :
sudo docker-compose pull
sudo docker-compose up -d
Then remove any old images.
Before installing our services, we need to configure the network, so we can reach our applications from different locations.
The idea is to have :
- A main domain name
- A subdomain name for each application that must be reachable from the internet
- A dynamic DNS name to avoid having to use a static public IP address
- A Traefik reverse proxy to handle HTTP request that will be port forwarded to the applications
For services that will not be accessible to the internet, we will use Pi-Hole’s ability to manage local DNS records (each record will point to Banana Pi's internal IP address) so that they are also reachable using a subdomain name.
Here is an overview of the route for each case, when a client request myapp.example.com :
🔹 Internet access :
flowchart LR
style HOSTING_PROVIDER fill:#4d683b,color:#fff
style DDNS_PROVIDER fill:#69587b,color:#fff
style INTERNET_SERVICE_PROVIDER fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style APPLICATION fill:#663535,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665151,color:#fff
CLIENT((Client))
SUBDOMAIN_MYAPP(myapp<br/>.example.com)
DDNS(myddns<br/>.ddns.net)
ROUTER[public IP]
ROUTER_PORT{{port}}
DOCKER_TRAEFIK_PORT{{port}}
APPLICATION_PORT{{port}}
subgraph HOSTING_PROVIDER[DOMAIN NAME REGISTRAR]
SUBDOMAIN_MYAPP
end
subgraph DDNS_PROVIDER[DYNAMIC DNS PROVIDER]
DDNS
end
subgraph INTERNET_SERVICE_PROVIDER[INTERNET SERVICE PROVIDER]
ROUTER
ROUTER_PORT
end
subgraph SINGLE_BOARD_COMPUTER[BANANA PI]
subgraph TRAEFIK_CONTAINER[TRAEFIK]
DOCKER_TRAEFIK_PORT
end
subgraph APPLICATION[APPLICATION]
APPLICATION_PORT
end
end
CLIENT --> SUBDOMAIN_MYAPP
SUBDOMAIN_MYAPP -->|CNAME| DDNS
DDNS -->|DynDNS| ROUTER
ROUTER --> ROUTER_PORT
ROUTER_PORT -->|port forward| DOCKER_TRAEFIK_PORT
DOCKER_TRAEFIK_PORT -->|HTTP router| APPLICATION_PORT
🔹 VPN access :
flowchart LR
style VPN fill:#4d683b,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style PI_HOLE fill:#663535,color:#fff
style APPLICATION fill:#663535,color:#fff
style WIREGUARD fill:#663535,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665151,color:#fff
CLIENT((Client))
VPN_CLIENT(DNS)
VPN_ENDPOINT(Endpoint)
PIHOLE_DNS_MYAPP(myapp<br/>.example.com)
DOCKER_TRAEFIK_PORT{{port}}
APPLICATION_PORT{{port}}
WIREGUARD_PORT{{port}}
PIHOLE_DNS{{port}}
subgraph VPN[VPN]
VPN_CLIENT
VPN_ENDPOINT
end
subgraph SINGLE_BOARD_COMPUTER[BANANA PI]
subgraph PI_HOLE[PI-HOLE]
PIHOLE_DNS
PIHOLE_DNS_MYAPP
end
subgraph TRAEFIK_CONTAINER[TRAEFIK]
DOCKER_TRAEFIK_PORT
end
subgraph APPLICATION[APPLICATION]
APPLICATION_PORT
end
subgraph WIREGUARD[WIREGUARD]
WIREGUARD_PORT
end
end
VPN_ENDPOINT --> WIREGUARD_PORT
CLIENT --> VPN_CLIENT
VPN_CLIENT --> PIHOLE_DNS
PIHOLE_DNS_MYAPP --->|A| TRAEFIK_CONTAINER
DOCKER_TRAEFIK_PORT -->|HTTP router| APPLICATION_PORT
🔹 Local network access :
flowchart LR
style INTERNET_SERVICE_PROVIDER fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style PI_HOLE fill:#663535,color:#fff
style APPLICATION fill:#663535,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665151,color:#fff
CLIENT((Client))
ISP_DNS(DNS)
PIHOLE_DNS_MYAPP(myapp<br/>.example.com)
DOCKER_TRAEFIK_PORT{{port}}
APPLICATION_PORT{{port}}
PIHOLE_DNS{{port}}
subgraph INTERNET_SERVICE_PROVIDER[INTERNET SERVICE PROVIDER]
ISP_DNS
end
subgraph SINGLE_BOARD_COMPUTER[BANANA PI]
subgraph PI_HOLE[PI-HOLE]
PIHOLE_DNS
PIHOLE_DNS_MYAPP
end
subgraph TRAEFIK_CONTAINER[TRAEFIK]
DOCKER_TRAEFIK_PORT
end
subgraph APPLICATION[APPLICATION]
APPLICATION_PORT
end
end
CLIENT ---> ISP_DNS
ISP_DNS ---> PIHOLE_DNS
PIHOLE_DNS_MYAPP --->|A| TRAEFIK_CONTAINER
DOCKER_TRAEFIK_PORT -->|HTTP router| APPLICATION_PORT
Note
My router offers all the required features (DHCP server, DNS server, port forwarding, dynDNS, etc.) for the steps described below. Most of the routers also have those features (they rarely purely route packets), but if this is not your case, you may have to perform double NAT to allow more advanced configurations. I obviously cannot go through the configuration specific to each router.
The following changes to the IP settings are required if you want all your internet traffic to be redirected to your Banana Pi board so that every request goes through Pi-Hole and use the custom DNS resolver (Unbound) :
- Assign a static IP address to the Banana Pi board, for example
192.168.0.17
(I have local DHCP enabled) - Set DNS (primary and secondary) manually, to point to the Banana Pi board address set up above (
192.168.0.17
)
Of course Pi-Hole container have to expose port 53 to receive incoming DNS requests. Refer to Pi-hole setup for more details.
When connecting from outside our network (from the internet), we need to know the public IP address of our router to connect to. But unless we have a static public IP (not necessarily the safest option), we are getting dynamically-assigned public IP addresses (via DHCP), so we would need to update the configuration everytime the IP changes, which is very uncomfortable.
Fortunately we can register a dynamic host record (DynDNS), and configure it in our router configuration so that when the public IP address changes, a call is made to the DynDNS service provider to update the record. That way our network will always be reachable from the internet via the DynDNS record no matter the IP address.
Well, simply register a dynamic DNS hostname from a provider (there are free ones), for example No-IP, DuckDNS, etc. :
- hostname :
myddns.ddns.net
- IP / target : internet box external IP (public IP)
- type :
A
Then activate DynDNS on the router :
- Service provider :
No-IP
(adapt to your provider) - Hostname :
myddns.ddns.net
- Username : xxxxxxxx
- Password : xxxxxxxx
The IP will be updated automatically when a change will be detected.
Note
Your ISP may only support some dynamic DNS provider that can be configured in the router, so you may want to pick one that is supported natively, else you will have to set up an update client that will be responsible to regularly check for IP change.
You will need to buy a domain from you preferred domain provider, for this guide I will use example.com
.
Important
I advise you to also subscribe to a domain privacy option in order to hide you personal data. Domain Privacy protects the contact information of the owner of a domain name in the WHOIS directory. Normally, this public database is used to verify the availability of a domain name and who it belongs to, but marketing companies and scammers can also exploit it for other purposes, like sending spam or identity theft.
You can check the information that are available publicly about your domain using the whois
command :
whois example.com
Right, we will then use subdomains to locate each service as a separate website to avoid having to buy a new domain name for each. A subdomain is simply a prefix added to the original domain name, it functions as a separate website from its domain.
So, let's create subdomains from the domain name registrar settings, for every service to be exposed on the internet :
wireguard.example.com
: To access the WireGuard serverquake.example.com
: To access the Defrag-life websitelychee.example.com
: To access the Lychee websiteccteam.example.com
: To access the CCTeam APIs
And add corresponding CNAME records to point to the dynamic DNS myddns.ddns.net
:
CNAME wireguard myddns.ddns.net
CNAME quake myddns.ddns.net
CNAME lychee myddns.ddns.net
CNAME ccteam myddns.ddns.net
A CNAME record is just a records which points a name to another name instead of pointing to an IP address (like A records).
Note
Services that will only be accessible from the local network or through VPN do not need to have a subdomain defined at this level. We will use Pi-Hole's local DNS records for that. See Pi-Hole configuration.
However, while the VPN stuff is fully functional and to be able to do the configuration easily from your client machine, you may want to temporarily create subdomains and add CNAME records for the following subdomains (also remove the IP whitelisting middleware in the corresponding service configuration), else you will be blocked by IP whitelisting :
wireguard-ui.example.com
: To configure the WireGuard VPN and create clientsportainer.example.com
: To manage Docker containers (start/stop, check logs, etc.)pihole.example.com
: To configure the local DNS
For our services to be reachable from the internet, we need to forward incoming requests to our Banana Pi board so that they will be handled by our Traefik reverse proxy. This can be done through port forwarding.
Port forwarding directs the router to send any incoming data from the internet to a specified device on the network. It is safe to forward ports on your router as long as you have a reverse proxy or a firewall running in between.
If you decide that at least one of the applications must be reachable from the outside directly through HTTP or HTTPS without requiring a VPN, then simply port forward the related TCP ports to the Banana Pi.
Go to your router configuration and add a port forward rule for the TCP port 80
:
- Name :
Traefik
- Input port :
80
- Target port :
80
- Device :
bananapim5
- Protocol :
TCP
and 443
:
- Name :
Traefik SSL
- Input port :
443
- Target port :
443
- Device :
bananapim5
- Protocol :
TCP
We will configure Traefik later to redirect HTTP requests to HTTPS. But if you prefer you can only open the HTTPS port (if you are going to use Let's encrypt' HTTP challenge, it's enough for the TLS certificates to be generated, see the warning box a little further below though).
If you want some applications to be available from the outside through VPN, then simply open the VPN port :
Go to your router configuration and add a port forward rule for the UDP port 51820
:
- Name :
VPN
- Input port :
51820
- Target port :
51820
- Device :
bananapim5
- Protocol :
UDP
Of course if you want the applications to be available only through VPN, then only open the VPN port, remove any open HTTP/HTTPS port.
Warning
Note that if you use Let's Encrypt' HTTP challenge to issue and renew SSL/TLS certificates, target websites must be reachable from the internet. That mean you will have to open the HTTP(S) port at least when issuing/renewing certificates, you could also keep them open and restrict access to the necessary IP ranges, if your router supports that. If you really don't want to open HTTP(S) ports (better for security), then you will have to configure DNS challenge instead of HTTP challenge, if your DNS provider support it. See HTTP challenge and DNS challenge below when configuring Traefik.
Traefik is an open source HTTP reverse proxy and load balancer that can integrate easily with our Docker infrastructure. We will use it to intercept and route every incoming request to the corresponding backend services.
It will listen to our services and instantly generates the routes, so that they are connected to the outside world. We will also use it to automatically generate and renew SSL/TLS certificates through Let's Encrypt.
Here is an overview of the network flow on our setup :
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style MYAPP1_CONTAINER fill:#663535,color:#fff
style MYAPP2_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
INCOMING_REQUEST((INCOMING<br/>REQUEST))
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_TRAEFIK_PORT8080{{8080/tcp}}
DOCKER_MYAPP1_PORT{{exposed port}}
DOCKER_MYAPP2_PORT{{exposed port}}
TRAEFIK_ROUTER_MYAPP1(myapp1.example.com)
TRAEFIK_ROUTER_MYAPP2(myapp2.example.com)
TRAEFIK_ROUTER_TRAEFIK(traefik.example.com)
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph MYAPP1_CONTAINER[MYAPP1 CONTAINER]
DOCKER_MYAPP1_PORT
end
subgraph MYAPP2_CONTAINER[MYAPP2 CONTAINER]
DOCKER_MYAPP2_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_TRAEFIK
TRAEFIK_ROUTER_MYAPP1
TRAEFIK_ROUTER_MYAPP2
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARE]
REDIRECT(HTTPS redirect)
IP_WHITELISTING(IP whitelist)
BASIC_AUTH(Basic auth)
end
DOCKER_TRAEFIK_PORT80
DOCKER_TRAEFIK_PORT443
DOCKER_TRAEFIK_PORT8080
end
end
end
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
TRAEFIK_ROUTER_TRAEFIK --> REDIRECT
TRAEFIK_ROUTER_MYAPP1 --> REDIRECT
TRAEFIK_ROUTER_MYAPP2 --> REDIRECT
REDIRECT -.-> DOCKER_TRAEFIK_PORT443
IP_WHITELISTING --> BASIC_AUTH
IP_WHITELISTING ---> DOCKER_MYAPP2_PORT
REDIRECT --> IP_WHITELISTING
REDIRECT ---> DOCKER_MYAPP1_PORT
BASIC_AUTH --> DOCKER_TRAEFIK_PORT8080
It handles HTTP to HTTPS redirection, IP whitelisting and basic authentication through custom middlewares.
In this example myapp1
is accessible from the internet, myapp2
is accessible only through VPN,
and Traefik (dashboard and APIs) is accessible only through VPN after basic authentication.
I've deliberately left out Sablier for the moment, to keep things simple, but basically this would simply add a middleware that checks the state of the application, in order to temporarily display a waiting page while not ready, refer to Scale to zero with Sablier for more information.
First, create a folder to hold data and configuration :
sudo mkdir /opt/apps/traefik
Then copy the files from this project's traefik directory into the /opt/apps/traefik directory :
- docker-compose.yml : The Traefik service definition
- traefik.yml : The Traefik static configuration
- credentials.txt : A file that will hold users credentials to access the Traefik dashboard (restricted with basic authentication), see Generate basic authentication credentials
Files should be ready to use, simply replace the e-mail address (admin@example.com
) in the traefik.yaml file with your e-mail address.
You will also need to create the JSON file to hold the certificates, see TLS certificates.
Anyway you will find below more details about each file (see Configuration files details) and some further configuration.
As we configured the Traefik dashboard to be protected with basic authentication, allowed users have to be added to the credentials.txt file.
You can generate a user/password using htpasswd :
-
Install the needed package if not present :
sudo apt install apache2-util
-
Generate the credentials (we use bcrypt with a computing time of 10) :
htpasswd -nbBC 10 admin xxxxxxxx
Then copy the output to the credentials.txt file.
Note
Actually as Traefik will be accessible only from local network and through VPN, we don't really need to set up basic authentication, but it's more for demonstration, and it's always better to have 2 layers of security than one.
To enable HTTPS on our websites, we need to get TLS certificates from a certificate authority. A TLS certificate certifies, in a way, the authenticity of a website (actually it proves that we have the ownership of the public key used for TLS encryption), preventing hackers from intercepting any data transmitted between a device and the site.
We will use Let's Encrypt, a nonprofit certificate authority which provide free TLS certificates.
Let's Encrypt can automatically generate certificates via Traefik, for that we need to create a acme.json
file that will hold the generated certificates
(file is mapped to a volume in theCompose file),
so that the certificates are persisted between container restarts (not generated each time which could raise Let's Encrypt rate limits), we also need to change
the permissions so that Traefik can access and edit this file :
cd /opt/apps/traefik
touch /opt/apps/traefik/acme.json
chmod 600 /opt/apps/traefik/acme.json
If you use HTTP challenge, Let's Encrypt will validate that you control the domain names by trying to reach the web server through HTTP or HTTPS.
So you must open and port forward ports 80
or 443
for the TLS certificate to be issued correctly.
The corresponding certificate resolver configuration would be :
tlsChallenge: { }
Warning
Note that Let’s Encrypt will not let you use this challenge to issue wildcard certificates.
When using DNS challenge, Let's Encrypt will validate that you control the domain names by querying the DNS system for a TXT record under the target domain name. So you don't need to open HTTP or HTTPS port on your router.
First, check that your DNS provider is supported by Traefik to automate the DNS verification, a list can be found here : https://doc.traefik.io/traefik/https/acme/.
Then :
- Create an access token / API key from your provider interface
- Add the necessary environment variables required by your provider, to the Traefik service configuration, i.e. :
environment: MYPROVIDER_ACCESS_TOKEN: <access_token_here>
The corresponding certificate resolver configuration would be :
dnsChallenge:
provider: <your_provider_here>
We will set up IP whitelisting so that we can allow only traffic from the local network or from the VPN for some of our services. Indeed, even if we do not have defined public subdomains for these services, they can still be reached via the IP address (actually in that case Traefik will not route the request, but it is still better to have this additional security).
Basically it involves creating a Traefik middleware for defining the IP whitelist and apply it to the needed services.
So we need to allow 2 IP ranges :
- The local IP range : IPs assigned to the devices on your local network (computers, mobile devices, ...)
- The Traefik Docker bridge network IP range : IPs assigned by Docker to any container in the Traefik network
For the Traefik Docker network IP range, you can either take the default assigned one, or assign a static subnet when creating the Traefik network, i.e. :
networks:
traefik-net:
name: traefik-net
ipam:
config:
- subnet: 172.22.0.0/16
That way :
- Requests coming from the local network will come with a local address assigned by the router DHCP, and will be accepted.
- Requests coming from the internet through VPN will go through Pi-Hole and will be redirected to Traefik (Pi-hole's local DNS records) and thus come with a Traefik Docker network assigned IP address, and will be accepted.
- Requests coming from the internet without VPN will come with a public IP address and will be rejected as it will not match any whitelisted address.
📄 traefik.yaml :
api:
dashboard: true
entryPoints:
web:
address: ':80'
websecure:
address: ':443'
providers:
docker:
watch: true
exposedByDefault: false
certificatesResolvers:
default:
acme:
email: admin@example.com
storage: acme.json
caServer: 'https://acme-v02.api.letsencrypt.org/directory'
dnsChallenge:
provider: <your_provider_here>
log:
level: info
This config file :
- enables the Traefik dashboard (UI that provides a detailed overview of the current configuration)
- defines 2 entrypoints, named
web
(for port80
) andwebsecure
(for port443
) so that we can receive requests on these ports - defines a
docker
provider so that we can use container labels for retrieving routing configuration. We have configured it to not expose containers by default, so that containers that do not have atraefik.enable=true
label are ignored from the resulting routing configuration - defines a
default
certificate resolver for Let's Encrypt to automatically generate certificates - set log level to
info
(you can set it todebug
when you need more information on what's going on)
📄 docker-compose.yml :
version: "3.7"
services:
traefik:
image: traefik:latest
container_name: traefik
ports:
- "80:80"
- "443:443"
volumes:
- /var/run/docker.sock:/var/run/docker.sock # So that Traefik can listen to the Docker events
- ./traefik.yml:/etc/traefik/config.yml # Traefik configuration
- ./acme.json:/acme.json # For Let's Encrypt certificate storage
- ./credentials.txt:/credentials.txt:ro # For Traefik dashboard credentials
networks:
- traefik-net
environment:
MYPROVIDER_ACCESS_TOKEN: <access_token_here>
labels:
- "traefik.enable=true"
# Redirect all HTTP requests to HTTPS
- "traefik.http.middlewares.httpsonly.redirectscheme.scheme=https"
- "traefik.http.middlewares.httpsonly.redirectscheme.permanent=true"
- "traefik.http.routers.httpsonly.rule=HostRegexp(`{any:.*}`)"
- "traefik.http.routers.httpsonly.middlewares=httpsonly"
# Configure dashboard with HTTPS
- "traefik.http.routers.dashboard.rule=Host(`traefik.example.com`)"
- "traefik.http.routers.dashboard.entrypoints=websecure"
- "traefik.http.routers.dashboard.service=dashboard@internal"
- "traefik.http.routers.dashboard.tls=true"
- "traefik.http.routers.dashboard.tls.certresolver=default"
# Configure API with HTTPS
- "traefik.http.routers.api.rule=Host(`traefik.example.com`) && PathPrefix(`/api`)"
- "traefik.http.routers.api.entrypoints=websecure"
- "traefik.http.routers.api.service=api@internal"
- "traefik.http.routers.api.tls=true"
- "traefik.http.routers.api.tls.certresolver=default"
# IP whitelist for services to be accessible only through VPN and from the local network, have to be applied on each service configuration that need it
- "traefik.http.middlewares.vpn-whitelist.ipwhitelist.sourcerange=192.168.0.0/24, 172.18.0.0/16"
# Secure dashboard/API with authentication
- "traefik.http.routers.dashboard.middlewares=auth"
- "traefik.http.routers.api.middlewares=auth"
- "traefik.http.middlewares.auth.basicauth.usersfile=/credentials.txt"
networks:
traefik-net:
name: traefik-net
This Compose file mainly :
- exposes ports
80
and443
to receive incoming HTTP/HTTPS requests - defines a
traefik-net
network (which will have to be shared with the services that will use Traefik) - defines an environment variable to hold the DNS provider access token to be able to issue Let's Encrypt certificates through DNS challenge
- defines an HTTP router that will match
traefik.example.com
URL on ourwebsecure
entrypoint to point to our service - defines
httpsonly
router and middleware responsible for automatically redirecting HTTP requests to HTTPS - configures
dashboard
andapi
routers to use secure HTTPS endpoint with our certificate resolver to generate related Let's Encrypt certificates - secures dashboard and API endpoints by defining a
auth
middleware that will handle basic authentication (from credentials.txt file) - defines a
vpn-whitelist
middleware responsible for whitelisting IPs, so that it can be used by services that will be exposed to the internet to allow only local traffic and VPN traffic
Caution
The order in which the middlewares are defined in relation to a router is important, they will be applied in the same order as their declaration.
Finally, run the Compose file :
sudo docker-compose -f /opt/apps/traefik/docker-compose.yml up -d
# You may need to force recreate if you changed a config from an already running configuration
sudo docker-compose -f /opt/apps/traefik/docker-compose.yml up -d --force-recreate
You should end-up with a running traefik
container.
It should also have generated the needed Let's Encrypt certificates in the acme.json file.
So you can reach the dashboard at https://traefik.example.com.
We will install WireGuard, Pi-hole and Unbound to create a virtual private network (VPN) with ad-blocking and DNS privacy/caching capabilities.
WireGuard is a free and open-source modern VPN that utilizes state-of-the-art cryptography to securely encapsulates IP packets over UDP, in order to lower the environment attack surface. As a VPN it establishes a secure connection between a computer and the internet by making all the traffic going through an encrypted tunnel. The point of self-hosting our own VPN server is to ensure a private and secure connection to our services from the internet, without having to trust third-party VPN providers, and to keep complete freedom and control over the browsing data.
Pi-hole is a network-level ad blocking and internet tracker blocking application. It has the ability to block traditional website advertisements as well as advertisements in unconventional places such as mobile apps ads. It can also be used as a DNS server and has a built-in DHCP server.
Unbound is a validating, recursive, caching DNS resolver, that has the ability to contact DNS authority servers directly in order to validate and cache the queries on your network and serve them to you directly, so you don’t have to rely on your ISP or third-party DNS resolvers (like Cloudflare or Google).
We will also install WireGuard-UI which provide a GUI for easier WireGuard configuration and monitoring.
So the idea is that every client in any network can use the VPN to reach our applications while taking advantage of Pi-Hole and Unbound :
flowchart TB
style WINDOWS11 fill:#205566,color:#fff
style LAPTOP fill:#205566,color:#fff
style MOBILE fill:#205566,color:#fff
style MACOS fill:#205566,color:#fff
style WIREGUARD_SERVER fill:#764545,color:#fff
style PIHOLE fill:#663535,color:#fff
style UNBOUND fill:#562525,color:#fff
style INTERNET fill:#4d683b,color:#fff
style HOME_NETWORK fill:#263555,color:#fff
style 5G_NETWORK fill:#263555,color:#fff
style WORK_NETWORK fill:#263555,color:#fff
style BANANA_PI fill:#504255,color:#fff
WINDOWS11(Peer 1 <br/> Home PC - Windows 11)
LAPTOP(Peer 2 <br/> Home laptop - Ubuntu 22)
MOBILE(Peer 3 <br/> Phone - Android 14)
MACOS(Peer 4 <br/> Work PC - MacOS 13)
WIREGUARD_SERVER(WireGuard server - Secure VPN)
PIHOLE(Pi-Hole - Firewall & ad-blocking)
UNBOUND(Unbound - Custom DNS resolver)
INTERNET((Internet))
subgraph HOME_NETWORK[Home network]
WINDOWS11
LAPTOP
end
subgraph 5G_NETWORK[Mobile network]
MOBILE
end
subgraph WORK_NETWORK[Work network]
MACOS
end
subgraph BANANA_PI[Banana Pi]
WIREGUARD_SERVER
PIHOLE
UNBOUND
end
WINDOWS11 -- WireGuard tunnel --> WIREGUARD_SERVER
LAPTOP -- WireGuard tunnel --> WIREGUARD_SERVER
MOBILE -- WireGuard tunnel --> WIREGUARD_SERVER
MACOS -- WireGuard tunnel --> WIREGUARD_SERVER
WIREGUARD_SERVER -- DNS queries --> PIHOLE
PIHOLE -- Filtered DNS queries --> UNBOUND
UNBOUND -- DNS resolution --> INTERNET
We will use a single Compose file to set up the 3 services as they are tightly linked.
First, create a folder to hold data and configuration :
sudo mkdir /opt/apps/wireguard
Then from this project's wireguard directory, copy into the /opt/apps/wireguard directory :
- the .env file which holds some environment variables to be used in the Compose file
- the docker-compose.yml file which contains all the Docker services configuration
For more details about these files, see Configuration files details.
Now let's take a look at the configuration for each service.
The Compose file will run a WireGuard server, which need to be configured.
First, after WireGuard installation, it is recommended to change the permissions of the wg0.conf file (holding the server configuration) :
sudo chmod 600 /opt/apps/wireguard/wireguard/wg0.conf
else in the logs you will see a warning :
Warning: `/config/wg_confs/wg0.conf' is world accessible
which means that the configuration file permissions are too broad as there’s a private key in there, so it is better to restrict it.
Then you can do the configuration using WireGuard UI (accessible at https://wireguard-ui.example.com) :
In Global Settings menu :
- set Endpoint Address to
wireguard.example.com
, this is the public IP address / hostname of the WireGuard server that every client will connect to - set DNS Servers to
10.2.0.100
(Pi hole address defined in Docker Compose) instead of1.1.1.1
(Cloudflare) so that all clients traffic goes through Pi-Hole (and then Unbound) - adapt the MTU (Maximum Transmission Unit) to the right value depending on your network (you will also have to tweak it on each pear configuration).
I had to set it to
1420
, see VPN connection speed for more detail about finding best MTU value
Caution
Setting a non-optimal value for MTU can lead to slow connection.
In WireGuard Server menu :
- set Server Interface address to
10.10.1.1/24
which is the IP range (CIDR) to be used by peers in the tunnel (every peer in the network will be able to get an IP between10.10.1.1
and10.10.1.254
). You can use another address as you wish.
We have to set some firewall rules as our WireGuard VPN is running in a Docker container, we need to :
- allow packets to be routed through the WireGuard server, by setting up
FORWARD
rules - allow WireGuard clients to access the Internet, by configuring NAT (Network Address Translation) rules
So basically we need to deal with 3 interfaces of our container :
eth0@ifxx
: virtual interface that route packets from/to the Traefik Docker bridge network, handling incoming traffic from all peerseth1@ifxx
: virtual interface that route packets from/to the WireGuard container, for communication within the WireGuard containerwg0
: the WireGuard interface
Note
WireGuard typically requires a network interface for each peer, but as all incoming traffic from the WireGuard peers are arriving at the container using the Traefik bridge network assigned IP address, then only one interface is handling incoming traffic from all WireGuard peers
You can run the following commands to list network interfaces from the container, which may differ depending on your configuration :
First get into the container :
sudo docker exec -it wireguard bash
Then run :
ip link show
You should get something like :
1: lo: <LOOPBACK,UP,LOWER_UP> ... 5: wg0: <POINTOPOINT,NOARP,UP,LOWER_UP> ... 19848: eth1@if19849: <BROADCAST,MULTICAST,UP,LOWER_UP> ... 19850: eth0@if19851: <BROADCAST,MULTICAST,UP,LOWER_UP> ...
ip a
or ifconfig
will give you the ip address it points to :
eth0 Link encap:Ethernet HWaddr 02:43:AC:2C:00:08 inet addr:172.22.0.7 Bcast:172.22.255.255 Mask:255.255.0.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 [...] eth1 Link encap:Ethernet HWaddr 02:43:0B:03:00:04 inet addr:10.2.0.3 Bcast:10.2.0.255 Mask:255.255.255.0 UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 [...] lo Link encap:Local Loopback inet addr:127.0.0.1 Mask:255.0.0.0 UP LOOPBACK RUNNING MTU:65536 Metric:1 [...] wg0 Link encap:UNSPEC HWaddr 00-00-00-00-00-00-00-00-00-00-00-00-00-00-00-00 inet addr:10.10.1.1 P-t-P:10.10.1.1 Mask:255.255.255.0 UP POINTOPOINT RUNNING NOARP MTU:1450 Metric:1 [...]
Well, in WireGuard Server menu :
- set Post Up Script to :
iptables -A FORWARD -i %1 -j ACCEPT; iptables -A FORWARD -o %1 -j ACCEPT; iptables -t nat -A POSTROUTING -o eth+ -j MASQUERADE
- set Post Down Script to :
iptables -D FORWARD -i %1 -j ACCEPT; iptables -D FORWARD -o %1 -j ACCEPT; iptables -t nat -D POSTROUTING -o eth+ -j MASQUERADE
Post Up and Post Down defines steps to be run after the interface is turned on or off, respectively. In this case, iptables is used to set IP rules. The rules will then be cleared once the tunnel is down.
Note
I used the old deprecated iptables to set firewall rules, but you may better use nftables which is the successor to iptables
%1
is a placeholder for the network interface connected to the WireGuard container, so here wg0
.
eth+
is a pattern used in iptables to match network interfaces that start with the prefix eth
, so it matches our 2 virtual interfaces.
The first 2 rules allow packets to be forwarded between interfaces, for traffic originating from the WireGuard interface wg0
(rule 1), and heading out of wg0
(rule 2).
These two rules allow forwarding so every traffic going in or out of the WireGuard interface can be forwarded (routed).
The last rule translates incoming IPs to the IP on every eth
interface, so basically NAT.
You can see that iptables are applied by running :
iptable -L
Result :
Chain INPUT (policy ACCEPT) target prot opt source destination Chain FORWARD (policy ACCEPT) target prot opt source destination ACCEPT all -- anywhere anywhere ACCEPT all -- anywhere anywhere Chain OUTPUT (policy ACCEPT) target prot opt source destination
And for the NAT table :
iptable -t nat -L
Result :
Chain PREROUTING (policy ACCEPT) target prot opt source destination Chain INPUT (policy ACCEPT) target prot opt source destination Chain OUTPUT (policy ACCEPT) target prot opt source destination Chain POSTROUTING (policy ACCEPT) target prot opt source destination MASQUERADE all -- anywhere anywhere
In WireGuard Clients settings, create a new client :
- name :
desktop-home
(for example) - e-mail :
your.email@example.com
It should propose IP allocation of 10.10.1.2/32
for first client, then 10.10.1.3/32
, and so on as we set server interface address to 10.10.1.1/24
.
By default, allowed IPs is set to 0.0.0.0/0
, which will block untunneled traffic (block all traffic from taking a route that isn't the tunnel).
Change it to 0.0.0.0/1, 128.0.0.0/1
to reroute all traffic to the WireGuard tunnel.
Using /1
instead of /0
ensure that it takes precedence over the default /0
route.
Finally, to configure a VPN client :
- Export config file for your client
- Install WireGuard client on your client machine
- Load config file from client
Do this for each client on every device you need.
The Compose file will run a Pi-Hole instance which need to be configured.
First, we need to change interface settings to allow the traffic from other interfaces (especially for our VPN). By default, it allows only queries from local devices (from the same network as the Pi-Hole's network).
So, reach Pi-Hole at https://pihole.example.com and go to Settings -> Interface settings and choose "Permit all origins" instead of default "Allow only local requests", so that the traffic from outside the Docker bridge network can be seen (indeed, "local" for Pi-Hole is the Docker bridge network, and thus it would allow only queries from inside that network).
Then we need to add local DNS records so that the domain names can be resolved from VPN or local network (remember we have routed all the traffic through Pi-Hole). We simply need to associate domain names with the internal IP address of the Banana Pi, so they can be handled by the reverse proxy.
Go to local DNS -> DNS records and add a DNS record entry for every subdomain that should be available through VPN :
ackee.example.com 192.168.0.17
dashboard.example.com 192.168.0.17
dashdot.example.com 192.168.0.17
kuma.example.com 192.168.0.17
phpmyadmin.example.com 192.168.0.17
pihole.example.com 192.168.0.17
portainer.example.com 192.168.0.17
traefik.example.com 192.168.0.17
wireguard-ui.example.com 192.168.0.17
No need to add domains that are reachable from the internet as they will be reachable directly over HTTPS without going through our Pi-Hole.
You can also configure rate limiting (default to 1000 queries per minute), domain whitelisting, DNS settings, etc. but I will not go through all Pi-Hole configuration, the default should work just fine.
If it is working you should be able to see activity in the dashboard.
The first time you will run Unbound, it may fail because a few files included in the default configuration will be missing (at least in the image version I'm using), indeed the following files are included in the default unbound.conf file (which should have been created correctly in /etc/unbound/unbound.conf) :
- /opt/unbound/etc/unbound/a-records.conf
- /opt/unbound/etc/unbound/srv-records.conf
- /opt/unbound/etc/unbound/forward-records.conf
You could manually create these files (you can find default ones from the Unbound GitHub repository), and then mount them into the Unbound container, before running again the Compose file.
But that way it would run Unbound in forwarder mode, meaning that the DNS server will forward all the queries to Cloudflare. This was my first try and a DNS leak test confirmed that it uses Cloudflare, indeed the default forward-records.conf file includes the following forwarding rules :
forward-addr: 1.1.1.1@853#cloudflare-dns.com
forward-addr: 1.0.0.1@853#cloudflare-dns.com
So, if you want to run Unbound without forwarding, just remove the line that includes the forward-records.conf file in the unbound.conf file. Or don't create any of the 3 above files at all (and do not bind them in the container), and remove the includes from the unbound.conf file.
A DNS leak test should now show your IP address as DNS server.
Important
If you use the default forward-records.conf file, Unbound will run in forwarder mode, meaning that it will forward all queries to Cloudflare. To remove the default forwarding to Cloudflare and make your unbound container a recursive-only server, edit the unbound.conf file and remove include of the forward-records.conf file.
Finally, if you want to activate logging for debugging purposes, edit the /etc/unbound/unbound.conf configuration file :
verbosity: 1
log-queries: yes
But it's not recommended to increase verbosity for daily use, as Unbound logs a lot.
📄 .env :
WIREGUARD_UI_USERNAME=<username>
WIREGUARD_UI_PASSWORD=<password>
PIHOLE_PASSWORD=<password>
It simply defines environment variables to be used in the Docker Compose file.
📄 docker-compose.yaml :
version: "3.7"
networks:
wireguard_net:
name: wireguard_net
ipam:
driver: default
config:
- subnet: 10.2.0.0/24
traefik-net:
name: traefik-net
external: true
services:
unbound:
image: "mvance/unbound-rpi:latest"
container_name: unbound
restart: unless-stopped
hostname: "unbound"
volumes:
- "./unbound:/opt/unbound/etc/unbound/"
networks:
wireguard_net:
ipv4_address: 10.2.0.200
wireguard:
depends_on: [ unbound, pihole ]
image: linuxserver/wireguard:latest
container_name: wireguard
cap_add:
- NET_ADMIN
volumes:
- ./wireguard:/config
ports:
- "51820:51820/udp"
restart: unless-stopped
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Zurich
sysctls:
- net.ipv4.conf.all.src_valid_mark=1
networks:
wireguard_net:
ipv4_address: 10.2.0.3
traefik-net:
labels:
- "traefik.enable=true"
- "traefik.http.routers.wireguard-ui.rule=Host(`wireguard-ui.example.com`)"
- "traefik.http.routers.wireguard-ui.entrypoints=websecure"
- "traefik.http.routers.wireguard-ui.tls.certresolver=default"
- "traefik.http.routers.wireguard-ui.middlewares=vpn-whitelist"
- "traefik.http.services.wireguard-ui.loadbalancer.server.port=5000"
- "traefik.docker.network=traefik-net"
wireguard-ui:
image: ngoduykhanh/wireguard-ui:latest
container_name: wireguard-ui
depends_on: [ unbound, wireguard ]
cap_add:
- NET_ADMIN
# use the network of the 'wireguard' service, this enables to show active clients in the status page
network_mode: service:wireguard
env_file: ./.env
environment:
- SENDGRID_API_KEY
- EMAIL_FROM_ADDRESS
- EMAIL_FROM_NAME
- SESSION_SECRET
- WGUI_USERNAME=$WIREGUARD_UI_USERNAME
- WGUI_PASSWORD=$WIREGUARD_UI_PASSWORD
- WG_CONF_TEMPLATE
- WGUI_MANAGE_START=true
- WGUI_MANAGE_RESTART=true
logging:
driver: json-file
options:
max-size: 50m
volumes:
- ./wireguard-ui-db:/app/db
- ./wireguard:/etc/wireguard
pihole:
depends_on: [ unbound ]
container_name: pihole
image: pihole/pihole:latest
restart: unless-stopped
hostname: pihole
env_file: ./.env
ports:
- "53:53/tcp"
- "53:53/udp"
labels:
- "traefik.enable=true"
- "traefik.http.routers.pihole.rule=Host(`pihole.example.com`)"
- "traefik.http.routers.pihole.entrypoints=websecure"
- "traefik.http.routers.pihole.tls.certresolver=default"
- "traefik.http.routers.pihole.middlewares=vpn-whitelist"
- "traefik.http.services.pihole.loadbalancer.server.port=80"
- "traefik.docker.network=traefik-net"
dns:
- 127.0.0.1
- 10.2.0.200 # Unbound IP
environment:
TZ: "Europe/Zurich"
WEBPASSWORD: $PIHOLE_PASSWORD
ServerIP: 10.2.0.100 # Internal IP of pi-hole
DNS1: 10.2.0.200 # Unbound IP
DNS2: 10.2.0.200 # If we don't specify two, it will auto pick google.
volumes:
- "./etc-pihole/:/etc/pihole/"
- "./etc-dnsmasq.d/:/etc/dnsmasq.d/"
# Recommended but not required (DHCP needs NET_ADMIN)
cap_add:
- NET_ADMIN
networks:
wireguard_net:
ipv4_address: 10.2.0.100
traefik-net:
This Compose file roughly :
- defines a
wireguard_net
network to hold our 4 WireGuard-related services, with the assigned subnet address10.2.0.0/24
(CIDR notation) - reference the
traefik-net
Traefik network so that services can use it and be discoverable by Traefik - defines our 4 services (WireGuard, WireGuard UI, Pi-Hole, Unbound) :
unbound
service :- defines a volume that binds the configuration folder to a local folder, in case we want to change default configuration
- assigns the static IP address
10.2.0.200
for the container inside the WireGuard network
wireguard
service :- defines a volume to bind configuration file
- adds network capability
NET_ADMIN
to grant the container the ability to perform various network-related tasks (like configuring network interfaces or changing routing tables) required be the service - enables the
net.ipv4.conf.all.src_valid_mark
sysctl setting to activate source address validation, which helps in preventing IP spoofing attacks - uses Traefik labels to :
- create a service which will point to our container application running on port
5000
- create an HTTP router that will match
wireguard-ui.example.com
URL on ourwebsecure
entrypoint to point to our service - assign the
vpn-whitelist
middleware so that the traffic will be restricted to allowed IPs only (application reachable only from local network or through VPN) - add a TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
- assigns
the
static IP address10.2.0.3
for the container inside the WireGuard network
wireguard-ui
service :- add network capability
NET_ADMIN
to grant the container the ability to perform various network-related tasks (like configuring network interfaces or changing routing tables) required be the service - uses the network of the
wireguard
service - references the .env file containing some defined environment variables values
- defines JSON file logging with a max size of 50 MB
- add network capability
pihole
service :- defines volumes to bind configuration files
- references the .env file containing some defined environment variables values
- uses Traefik labels to :
- create a service which will point to our container application running on port
80
- create an HTTP router that will match
pihole.example.com
URL on ourwebsecure
entrypoint to point to our service - assign the
vpn-whitelist
middleware so that the traffic will be restricted to allowed IPs only (application reachable only from local network or through VPN) - add a TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
- sets DNS to point to Unbound
- adds network capability
NET_ADMIN
to grant the container the ability to perform various network-related tasks (like configuring network interfaces or changing routing tables) required be the service - assigns the static IP address
10.2.0.100
for the container inside the WireGuard network
Simply run the Compose file :
sudo docker-compose -f /opt/apps/wireguard/docker-compose.yml up -d
You should end-up with 4 running containers :
wireguard
wireguard-ui
pihole
unbound
It should also have generated the needed Let's Encrypt certificates in the acme.json file.
Unbound is not exposed, but you can reach other services :
- WireGuard server at https://wireguard.example.com
- WireGuard GUI at https://wireguard-ui.example.com
- Pi-Hole at https://pihole.example.com
Each service should be resolvable through its subdomain name.
When a user enters the URL in the browser, the browser need to know the IP address corresponding to the domain name, so it can send the queries to. For that it :
- Checks the browser cache (most browsers cache DNS data by default), and use the address corresponding to the provided name if found
- Checks the OS cache and return the address to the browser if found
- Checks the local host table file (usually /etc/hosts on Linux/Mac systems and C:\Windows\System32\Drivers\etc\hosts on Windows) to see if an entry matches the specified name, if so, it will directly return it to the browser
- Invokes the local resolver, on Windows, it is defined at the network adapter level, usually Control Panel > Network and Internet > Network Connections then in the advanced properties of the desired connection (Higher Priority Connection). On Linux/Mac it is usually /etc/resovl.conf. In my Windows system it is automatically configured to point to my router local IP Address. The resolver checks its cache to see if it already has the address for this name. If it does, it returns it immediately to the browser
- Checks the router cache and return the address to the browser if found
- Checks the ISP cache and return the address to the browser if found
- Checks the ISP resolving name server which will call the root DNS servers (root server <--> TLD server <--> Authoritative Name Server) to find the IP address from the DNS server responsible for the domain name
In our case every request from the local network is forwarded to Pi-hole, so the IP resolving will always go through Pi-Hole and Unbound. See Network flow later below for a more graphical representation of the network flow.
You can first test that each service is resolvable using nslookup
command, i.e. :
C:\Users\Yann39>nslookup myapp.example.com
Server : pi.hole
Address: 10.2.0.100
Name : myapp.example.com
Address: 192.168.0.17
Then you can look for DNS leak using any online checker, to determine which DNS servers the browser is using to resolve domain names, it should end up showing your public IP address, not Cloudflare or Google, etc. as we use Unbound (see Unbound for configuration).
You could also use tools like Wireshark to look closely at DNS resolution or to confirm that the traffic is effectively going through the VPN when connected
(in that case the "Protocol" column should be WireGuard
for all queries). I will not go through a Wireshark tutorial, but it is a very
useful and interesting tool for viewing what going on in your network.
To verify that the network is set up correctly, we can simply try to access some services and see if we can reach them or not, from different device and connection type.
Note
I simply temporarily added a CNAME
record in my domain name registrar for the services to be checked, to point to my DDNS for testing the IP whitelisting,
Traefik will not route request if you try to access a service via the public IP address.
For example if we try to access a service that must be accessible only through VPN (and local network), here are the results :
Device | Connection | VPN status | Public IP | Remote address (request header) | Traefik | Response |
---|---|---|---|---|---|---|
PC | cable | 🔴 off | 144.12.117.3 | 192.168.0.17 | 192.168.0.11 | ✔️ 200 OK |
PC | cable | 🟢 on | 144.12.117.3 | 192.168.0.17 | 192.168.0.11 | ✔️ 200 OK |
Mobile | wifi | 🔴 off | 144.12.117.3 | 192.168.0.17 | 192.168.0.12 | ✔️ 200 OK |
Mobile | wifi | 🟢 on | 144.12.117.3 | 192.168.0.17 | 172.22.0.1 | ✔️ 200 OK |
Mobile | 4G | 🔴 off | 81.165.84.189 | 144.12.117.3 | 81.165.84.189 | ❌ 403 Forbidden |
Mobile | 4G | 🟢 on | 144.12.117.3 | 192.168.0.17 | 172.22.0.1 | ✔️ 200 OK |
192.168.0.17
is the Banana Pi's private IP address144.12.117.3
is the router's public IP address192.168.0.11
is the desktop PC's local IP address192.168.0.12
is the mobile phone's local IP address172.22.0.1
is the Traefik Bridge network IP address81.165.84.189
is the public IP address on the mobile 4G network
These are expected results, we can see that the service is reachable from the local network and from anywhere when using the VPN, and it is not accessible outside the local network if we don't use the VPN.
We can also confirm this by looking at the Traefik logs (you have to set level
to debug
in traefik.yml file to see the debug logs)
which shows that the vpn-whitelist
middleware blocks any IP address that is not whitelisted :
level=debug msg="Authentication succeeded" middlewareType=BasicAuth middlewareName=auth@docker level=debug msg="Accepting IP 192.168.0.17" middlewareName=vpn-whitelist@docker middlewareType=IPWhiteLister level=debug msg="Accepting IP 172.22.0.1" middlewareName=vpn-whitelist@docker middlewareType=IPWhiteLister level=debug msg="Rejecting IP 81.165.84.189: \"81.165.84.189\" matched none of the trusted IPs" middlewareName=vpn-whitelist@docker middlewareType=IPWhiteLister
To verify that the VPN is not killing the connection speed, you can first use an online speed test, this will confirm whether the connection speed is close to normal.
In my case I observed an abnormally slow connection (~22 MB/s download and upload speed, even though I have a gigabit connection whose speed reaches 700+ MB/s without VPN).
That was because of the WireGuard MTU (Maximum Transmission Unit) value, which need to be slightly adjusted.
By default, WireGuard sets an MTU value of 1450
, which may not be optimal for your connection.
Most of Ethernet connections have an MTU of 1500
.
You can confirm this on your network by running the ping
command with the right parameters :
ping www.google.com -f -l 1472
ping www.google.com -f -l 1473
If the MTU is too high, it will tell you that the packet needs to be fragmented (packets larger than the connection’s MTU size cannot be transmitted and will be fragmented into smaller packets), else ping will answer normally.
1472
will work and 1473
will warn about fragmented packets,
this is because the IPv4 header is 20
bytes and the ICMP header is 8
bytes (so 1472 + 20 + 8 = 1500
).
But when going through WireGuard, it also sets additional bytes, which will result in a 60
bytes header, exceeding the value of 1500
(1450 + 60 = 1510
).
The worst case (IPv6, which has a 40
bytes header compared to 20
bytes of IPv4) ends up being for WireGuard 1500 - 80
= 1420
.
However, if you know that you're going to be using IPv4 exclusively, then you could go with 1440
.
So just set that value as the MTU for the WireGuard server and peer.
Then you can test the connection speed between the WireGuard server and the peer, using the iPerf utility.
-
Enter the WireGuard container :
docker exec -it wireguard bash
-
Install iPerf (use
apk
as this is an Alpine Linux) :apk add iperf
-
Install iPerf on the client machine (Windows in my case, so I just downloaded and extracted the .exe file).
-
Run iPerf in server mode on the WireGuard server :
iperf --server
-
Run iPerf in client mode on the client machine to execute the test :
iperf --client 10.2.0.3 --time 5 --reverse
10.2.0.3
is our WireGuard server static IP address--time 5
runs the test for 5 seconds--reverse
runs a download test (omit it to test upload)
Warning
iperf 2 and iperf 3 are not compatible, so make sure to install the same major version on both side,
else you may get iperf3: error - unable to connect to server: Connection refused
So here it the output with the default 1450
MTU :
------------------------------------------------------------
Client connecting to 10.2.0.3, TCP port 5001
TCP window size: 208 KByte (default)
------------------------------------------------------------
[ 3] local 10.10.1.2 port 52846 connected with 10.2.0.3 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0- 5.3 sec 14.9 MBytes 23.7 Mbits/sec
With 1420
MTU :
------------------------------------------------------------
Client connecting to 10.2.0.3, TCP port 5001
TCP window size: 208 KByte (default)
------------------------------------------------------------
[ 3] local 10.10.1.2 port 51999 connected with 10.2.0.3 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0- 5.0 sec 225 MBytes 378 Mbits/sec
And even better with 1400
MTU :
------------------------------------------------------------
Client connecting to 10.2.0.3, TCP port 5001
TCP window size: 208 KByte (default)
------------------------------------------------------------
[ 3] local 10.10.1.2 port 53401 connected with 10.2.0.3 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0- 5.0 sec 247 MBytes 414 Mbits/sec
Other values give roughly the same results.
You can also run multiple tests in parallel, with the -P
argument :
iperf --client 10.2.0.3 --time 5 --reverse -P 3
------------------------------------------------------------
Client connecting to 10.2.0.3, TCP port 5001
TCP window size: 208 KByte (default)
------------------------------------------------------------
[ 3] local 10.10.1.2 port 60001 connected with 10.2.0.3 port 5001
[ 5] local 10.10.1.2 port 60003 connected with 10.2.0.3 port 5001
[ 4] local 10.10.1.2 port 60002 connected with 10.2.0.3 port 5001
[ ID] Interval Transfer Bandwidth
[ 3] 0.0- 5.0 sec 89.8 MBytes 150 Mbits/sec
[ 4] 0.0- 5.0 sec 90.1 MBytes 151 Mbits/sec
[ 5] 0.0- 5.0 sec 78.2 MBytes 131 Mbits/sec
[SUM] 0.0- 5.0 sec 258 MBytes 432 Mbits/sec
And that way we can see that the CPU load on the Banana Pi reaches 100% and can limit the bandwidth :
Anyway, we improved a lot ! A new online test confirms it :
Note
You can try other value to see what fits best in your network. There are other parameters than can influence the connection speed (CPU load, distance, etc.), but I stopped investigation here as it's performing well enough for my use.
For the following examples, we will consider that the user enters http://myapp.example.com in the browser for the first time (no DNS record found in cache).
Here is what happen when you try to reach a service which is open to the internet, without using any VPN, from your local network holding your homelab (on the left), or from any other location (on the right) :
From local network | From outside local network |
---|---|
flowchart TB
style HOSTING_PROVIDER fill:#4d683b,color:#fff
style DDNS_PROVIDER fill:#69587b,color:#fff
style INTERNET_SERVICE_PROVIDER fill:#205566,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665151,color:#fff
style CONTAINER_ENGINE fill:#664343,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style PIHOLE_CONTAINER fill:#663535,color:#fff
style UNBOUND_CONTAINER fill:#663535,color:#fff
style MYAPP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
DOMAIN(example.com)
SUBDOMAIN_MYAPP(myapp.example.com)
DDNS(myddns.ddns.net)
ROUTER_PUBLIC_IP[public IP]
ROUTER_PORT80{{80/tcp}}
ROUTER_PORT443{{443/tcp}}
ROUTER_DNS[DNS]
DOCKER_PIHOLE_PORT53{{53/udp}}
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_MYAPP_PORT{{port/tcp}}
DOCKER_UNBOUND_PORT53{{53/udp}}
TRAEFIK_ROUTER_MYAPP(myapp.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
ROOT_DNS_SERVERS[Root DNS servers]
subgraph HOSTING_PROVIDER[DOMAIN NAME REGISTRAR]
DOMAIN
SUBDOMAIN_MYAPP
end
subgraph DDNS_PROVIDER[DYNAMIC DNS PROVIDER]
DDNS
end
subgraph INTERNET_SERVICE_PROVIDER[INTERNET SERVICE PROVIDER]
ROUTER_PUBLIC_IP
ROUTER_PORT80
ROUTER_PORT443
ROUTER_DNS
end
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph MYAPP_CONTAINER[MYAPP CONTAINER]
DOCKER_MYAPP_PORT
end
subgraph UNBOUND_CONTAINER[UNBOUND CONTAINER]
DOCKER_UNBOUND_PORT53
end
subgraph PIHOLE_CONTAINER[PIHOLE CONTAINER]
DOCKER_PIHOLE_PORT53
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443
DOCKER_TRAEFIK_PORT80
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_MYAPP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARE]
TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
end
CLIENT((client)) --->|" http://myapp.example.com "| BROWSER
BROWSER((browser)) -->|HTTP| ROUTER_PUBLIC_IP
DOMAIN <-->|subdomain| SUBDOMAIN_MYAPP
SUBDOMAIN_MYAPP <-->|CNAME| DDNS
DDNS <-->|DynDNS| ROUTER_PUBLIC_IP
ROUTER_PUBLIC_IP --> ROUTER_PORT80
ROUTER_PUBLIC_IP --> ROUTER_PORT443
ROUTER_PORT443 -->|port forward| DOCKER_TRAEFIK_PORT443
ROUTER_PORT80 -->|port forward| DOCKER_TRAEFIK_PORT80
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
TRAEFIK_ROUTER_MYAPP --> TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_REDIRECT --> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_REDIRECT --> DOCKER_MYAPP_PORT
BROWSER((browser)) <--> LOCAL_DNS_RESOLVER[/local resolver\]
LOCAL_DNS_RESOLVER <--->|router local IP address| ROUTER_DNS
ROUTER_DNS <-->|Banana Pi M5 static IP| DOCKER_PIHOLE_PORT53
DOCKER_PIHOLE_PORT53 <-->|DNS| DOCKER_UNBOUND_PORT53
UNBOUND_CONTAINER <-----> ROOT_DNS_SERVERS
linkStyle 0 stroke-width: 4px, stroke: red
linkStyle 1 stroke-width: 4px, stroke: red
linkStyle 2 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 3 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 4 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 5 stroke-width: 4px, stroke: red
linkStyle 8 stroke-width: 4px, stroke: red
linkStyle 9 stroke-width: 4px, stroke: red
linkStyle 10 stroke-width: 4px, stroke: red
linkStyle 11 stroke-width: 4px, stroke: red
linkStyle 12 stroke-width: 4px, stroke: red
linkStyle 13 stroke-width: 4px, stroke: red
linkStyle 14 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 15 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 16 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 17 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 18 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
|
flowchart TB
style HOSTING_PROVIDER fill:#4d683b,color:#fff
style DDNS_PROVIDER fill:#69587b,color:#fff
style INTERNET_SERVICE_PROVIDER fill:#205566,color:#fff
style INTERNET_SERVICE_PROVIDER2 fill:#205566,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665151,color:#fff
style CONTAINER_ENGINE fill:#664343,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style MYAPP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style DNS_RESOLVER fill:#805060,color:#fff
DOMAIN(example.com)
SUBDOMAIN_MYAPP(myapp.example.com)
DDNS(myddns.ddns.net)
ROUTER_PUBLIC_IP[public IP]
ROUTER_PORT80{{80/tcp}}
ROUTER_PORT443{{443/tcp}}
ROUTER2_DNS[DNS]
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_MYAPP_PORT{{port/tcp}}
TRAEFIK_ROUTER_MYAPP(myapp.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
ROOT_DNS_SERVERS[Root DNS servers]
CLOUDFLARE(Cloudflare, etc.)
subgraph HOSTING_PROVIDER[DOMAIN NAME REGISTRAR]
DOMAIN
SUBDOMAIN_MYAPP
end
subgraph DDNS_PROVIDER[DYNAMIC DNS PROVIDER]
DDNS
end
subgraph INTERNET_SERVICE_PROVIDER[ISP ROUTER]
ROUTER_PUBLIC_IP
ROUTER_PORT80
ROUTER_PORT443
end
subgraph INTERNET_SERVICE_PROVIDER2[CLIENT ISP ROUTER]
ROUTER2_DNS
end
subgraph DNS_RESOLVER[DNS RESOLVER]
CLOUDFLARE
end
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph MYAPP_CONTAINER[MYAPP CONTAINER]
DOCKER_MYAPP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443
DOCKER_TRAEFIK_PORT80
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_MYAPP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARE]
TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
end
CLIENT((client)) ---->|" http://myapp.example.com "| BROWSER
BROWSER((browser)) ---> ROUTER_PUBLIC_IP
DOMAIN <-->|subdomain| SUBDOMAIN_MYAPP
SUBDOMAIN_MYAPP <-->|CNAME| DDNS
DDNS <--->|DynDNS| ROUTER_PUBLIC_IP
ROUTER_PUBLIC_IP --> ROUTER_PORT80
ROUTER_PUBLIC_IP --> ROUTER_PORT443
ROUTER_PORT443 -->|port forward| DOCKER_TRAEFIK_PORT443
ROUTER_PORT80 -->|port forward| DOCKER_TRAEFIK_PORT80
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
TRAEFIK_ROUTER_MYAPP --> TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_REDIRECT --> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_REDIRECT --> DOCKER_MYAPP_PORT
BROWSER((browser)) <--> LOCAL_DNS_RESOLVER[/local resolver\]
LOCAL_DNS_RESOLVER <--->|router local IP address| ROUTER2_DNS
ROUTER2_DNS <--> CLOUDFLARE
CLOUDFLARE <------> ROOT_DNS_SERVERS
linkStyle 0 stroke-width: 4px, stroke: red
linkStyle 1 stroke-width: 4px, stroke: red
linkStyle 2 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 3 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 4 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 5 stroke-width: 4px, stroke: red
linkStyle 8 stroke-width: 4px, stroke: red
linkStyle 9 stroke-width: 4px, stroke: red
linkStyle 10 stroke-width: 4px, stroke: red
linkStyle 11 stroke-width: 4px, stroke: red
linkStyle 12 stroke-width: 4px, stroke: red
linkStyle 13 stroke-width: 4px, stroke: red
linkStyle 14 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 15 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 16 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 17 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
|
Once the resolving name server got the IP address through DNS resolver (yellow dotted line), the request reaches the Banana Pi on port 80 (HTTP) after being port forwarded by the ISP router, to be handled by the reverse proxy, and is then redirected to port 443 (HTTPS) thanks to the HTTPS redirect middleware, which finally route it to the target application (red line)
If you try to reach the service through the WireGuard VPN, the flow will look like the following :
flowchart TB
style HOSTING_PROVIDER fill:#4d683b,color:#fff
style DDNS_PROVIDER fill:#69587b,color:#fff
style INTERNET_SERVICE_PROVIDER fill:#205566,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665151,color:#fff
style CONTAINER_ENGINE fill:#664343,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style PIHOLE_CONTAINER fill:#663535,color:#fff
style UNBOUND_CONTAINER fill:#663535,color:#fff
style WIREGUARD_CONTAINER fill:#663535,color:#fff
style MYAPP_CONTAINER fill:#663535,color:#fff
style PIHOLE_DNS_RECORDS fill:#806030,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style VPN_CLIENT fill:#105040,color:#fff
DOMAIN(example.com)
SUBDOMAIN_MYAPP(myapp.example.com)
SUBDOMAIN_WIREGUARD(wireguard.example.com)
DDNS(myddns.ddns.net)
ROUTER_PUBLIC_IP[public IP]
ROUTER_PORT51820{{51820/tcp}}
WIREGUARD_PORT{{51820/tcp}}
ROUTER_DNS[DNS 1]
DOCKER_PIHOLE_PORT53{{53/udp}}
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_MYAPP_PORT{{port/tcp}}
DOCKER_UNBOUND_PORT53{{53/udp}}
TRAEFIK_ROUTER_MYAPP(myapp.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
TRAEFIK_MIDDLEWARE_WHITELIST(IP whitelist)
ROOT_DNS_SERVERS[Root DNS servers]
PIHOLE_DNS_MYAPP(myapp.example.com)
subgraph VPN_CLIENT[VPN CLIENT]
WIREGUARD_CLIENT_ENDPOINT[Endpoint]
WIREGUARD_CLIENT_DNS[DNS]
end
subgraph HOSTING_PROVIDER[DOMAIN NAME REGISTRAR]
DOMAIN
SUBDOMAIN_MYAPP
SUBDOMAIN_WIREGUARD
end
subgraph DDNS_PROVIDER[DYNAMIC DNS PROVIDER]
DDNS
end
subgraph INTERNET_SERVICE_PROVIDER[INTERNET SERVICE PROVIDER]
ROUTER_PUBLIC_IP
ROUTER_PORT51820
ROUTER_DNS
end
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph MYAPP_CONTAINER[MYAPP CONTAINER]
DOCKER_MYAPP_PORT
end
subgraph WIREGUARD_CONTAINER[WIREGUARD CONTAINER]
WIREGUARD_PORT
end
subgraph UNBOUND_CONTAINER[UNBOUND CONTAINER]
DOCKER_UNBOUND_PORT53
end
subgraph PIHOLE_CONTAINER[PIHOLE CONTAINER]
DOCKER_PIHOLE_PORT53
subgraph PIHOLE_DNS_RECORDS[LOCAL DNS RECORDS]
PIHOLE_DNS_MYAPP
end
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443
DOCKER_TRAEFIK_PORT80
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_MYAPP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARE]
TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_WHITELIST
end
end
end
end
CLIENT((client)) --> VPN_CLIENT
WIREGUARD_CLIENT_ENDPOINT --> SUBDOMAIN_WIREGUARD
WIREGUARD_CLIENT_DNS -->|Pi - Hole internal IP| DOCKER_PIHOLE_PORT53
VPN_CLIENT -->|" http://myapp.example.com "| BROWSER
BROWSER((browser)) --> ROUTER_PUBLIC_IP
DOMAIN -->|subdomain| SUBDOMAIN_MYAPP
DOMAIN -->|subdomain| SUBDOMAIN_WIREGUARD
SUBDOMAIN_MYAPP -->|CNAME| DDNS
SUBDOMAIN_WIREGUARD -->|CNAME| DDNS
DDNS -->|DynDNS| ROUTER_PUBLIC_IP
ROUTER_PUBLIC_IP --> ROUTER_PORT51820
ROUTER_PORT51820 ----->|port forward| WIREGUARD_PORT
PIHOLE_DNS_MYAPP -->|Banana Pi internal IP| DOCKER_TRAEFIK_PORT80
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
TRAEFIK_ROUTER_MYAPP --> TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_REDIRECT --> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_REDIRECT --> TRAEFIK_MIDDLEWARE_WHITELIST
TRAEFIK_MIDDLEWARE_WHITELIST --> DOCKER_MYAPP_PORT
ROUTER_DNS <---->|Banana Pi M5 static IP| DOCKER_PIHOLE_PORT53
DOCKER_PIHOLE_PORT53 <-->|DNS| DOCKER_UNBOUND_PORT53
UNBOUND_CONTAINER <------> ROOT_DNS_SERVERS
linkStyle 0 stroke-width: 4px, stroke: red
linkStyle 1 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 2 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 3 stroke-width: 4px, stroke: red
linkStyle 4 stroke-width: 4px, stroke: red
linkStyle 5 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 6 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 7 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 8 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 9 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 10 stroke-width: 4px, stroke: red
linkStyle 11 stroke-width: 4px, stroke: red
linkStyle 12 stroke-width: 4px, stroke: red
linkStyle 13 stroke-width: 4px, stroke: red
linkStyle 14 stroke-width: 4px, stroke: red
linkStyle 15 stroke-width: 4px, stroke: red
linkStyle 16 stroke-width: 4px, stroke: red
linkStyle 17 stroke-width: 4px, stroke: red
linkStyle 18 stroke-width: 4px, stroke: red
linkStyle 20 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
linkStyle 21 stroke-width: 4px, stroke: yellow, stroke-dasharray: 5
Here, first the client needs to connect to the VPN server through his preferred VPN client. The request for VPN connection reaches the Banana Pi on UDP port 51820 (VPN port) after being routed by the CNAME record to our dynamic DNS and then port forwarded by our router.
The DNS resolving always go through Pi-Hole and Unbound (yellow dotted line), to resolve the VPN server and the application.
The request for the application is handled by Pi-Hole DNS local record which route it to the Banana Pi IP address, to be handled by the reverse proxy, and is then redirected to port 443 (HTTPS) thanks to the HTTPS redirect middleware, which finally route it to the target application (red line).
If in any way the request arrives to Traefik with an unauthorized IP address, it will be rejected thanks to the IP whitelist middleware.
We will use Portainer to easily manage our Docker containers.
Portainer is an open source web interface that allows to create, modify, restart, monitor... Docker containers, images, volumes, networks and more.
Here is an overview of the network flow :
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style APP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_APP_PORT{{9000/tcp}}
TRAEFIK_ROUTER_APP(portainer.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
TRAEFIK_MIDDLEWARE_IP_WHITELIST(IP whitelist)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph APP_CONTAINER[PORTAINER CONTAINER]
DOCKER_APP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_IP_WHITELIST
end
TRAEFIK_MIDDLEWARE_REDIRECT --> TRAEFIK_MIDDLEWARE_IP_WHITELIST
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_IP_WHITELIST --> DOCKER_APP_PORT
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
Create a folder to hold the configuration :
sudo mkdir /opt/apps/portainer
Then simply copy the docker-compose.yml file from this project's portainer directory into the /opt/apps/portainer directory.
📄 docker-compose.yml :
version: "3.7"
services:
portainer:
image: portainer/portainer-ce:latest
container_name: portainer
volumes:
- portainer-vol:/data
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
networks:
- portainer-net
- traefik-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.portainer.rule=Host(`portainer.example.com`)"
- "traefik.http.routers.portainer.entrypoints=websecure"
- "traefik.http.routers.portainer.tls.certresolver=default"
- "traefik.http.routers.portainer.middlewares=vpn-whitelist"
- "traefik.http.services.portainer.loadbalancer.server.port=9000"
- "traefik.docker.network=traefik-net"
volumes:
portainer-vol:
name: portainer-vol
networks:
portainer-net:
name: portainer-net
traefik-net:
name: traefik-net
external: true
Things to notice :
- Portainer's data is bound to a Docker volume named
portainer-vol
(data will be stored in /var/lib/docker/volumes) - The Docker socket is mounted from the host machine into the container, as Portainer need it to deal with the Docker API
- It uses Traefik labels to :
- create a service which will point to our container application running on port
9000
- create an HTTP router that will match
portainer.example.com
URL on ourwebsecure
entrypoint to point to our service - assign the
vpn-whitelist
middleware so that the traffic will be restricted to allowed IPs only (application reachable only from local network or through VPN) - add a TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
- It runs in its own network (
portainer-net
) but must also share the same network as Traefik (traefik-net
) so it can be auto discovered
Finally, simply run the Compose file :
sudo docker-compose -f /opt/apps/portainer/docker-compose.yml up -d
You should end-up with a running portainer
container.
It should also have generated the needed Let's Encrypt certificates in the acme.json file in the Traefik folder.
The application is available at https://portainer.example.com.
As our services will use some MySQL/MariaDB databases, we will use PhpMyAdmin to easily manage our databases.
PhpMyAdmin is a free software tool intended to handle the administration of MySQL over the Web, it supports a wide range of operations on MySQL and MariaDB (managing databases, tables, columns, relations, indexes, users, permissions, etc.).
Here is an overview of the network flow :
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style APP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_APP_PORT{{80/tcp}}
TRAEFIK_ROUTER_APP(phpmyadmin.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
TRAEFIK_MIDDLEWARE_IP_WHITELIST(IP whitelist)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph APP_CONTAINER[PHPMYADMIN CONTAINER]
DOCKER_APP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_IP_WHITELIST
end
TRAEFIK_MIDDLEWARE_REDIRECT --> TRAEFIK_MIDDLEWARE_IP_WHITELIST
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_IP_WHITELIST --> DOCKER_APP_PORT
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
Create a folder to hold the configuration :
sudo mkdir /opt/apps/phpmyadmin
Then simply copy the docker-compose.yml file from this project's phpmyadmin directory into the /opt/apps/phpmyadmin directory.
docker-compose.yml :
version: "3.7"
services:
phpmyadmin:
image: arm64v8/phpmyadmin:latest
container_name: phpmyadmin
environment:
- PMA_ARBITRARY=1
restart: unless-stopped
volumes:
- ./darkwolf/:/var/www/html/themes/darkwolf/
networks:
- phpmyadmin-net
- traefik-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.phpmyadmin.rule=Host(`phpmyadmin.example.com`)"
- "traefik.http.routers.phpmyadmin.entrypoints=websecure"
- "traefik.http.routers.phpmyadmin.tls.certresolver=default"
- "traefik.http.routers.phpmyadmin.middlewares=vpn-whitelist"
- "traefik.http.services.phpmyadmin.loadbalancer.server.port=80"
- "traefik.docker.network=traefik-net"
networks:
phpmyadmin-net:
name: phpmyadmin-net
traefik-net:
name: traefik-net
external: true
Things to notice :
- We mount a theme directory to use a custom theme (dark theme named
darkwolf
), so just copy the theme data from official repository https://www.phpmyadmin.net/themes/ - It uses Traefik labels to :
- create a service which will point to our container application running on port
80
- create an HTTP router that will match
phpmyadmin.example.com
URL on ourwebsecure
entrypoint to point to our service - assign the
vpn-whitelist
middleware so that the traffic will be restricted to allowed IPs only (application reachable only from local network or through VPN) - add a TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
- It runs in its own network (
phpmyadmin-net
) but must also share the same network as Traefik (traefik-net
) so it can be auto discovered - The
phpmyadmin
network will have to be added to any MySQL/MariaDB database container that we want to make reachable from PhpMyAdmin - We set the environment variable
PMA_ARBITRARY
to1
to tell PhpMyAdmin to allow connection to any arbitrary database server (we will be able to specify the server on login screen)
Finally, simply run the Compose file :
sudo docker-compose -f /opt/apps/phpmyadmin/docker-compose.yml up -d
You should end-up with a running phpmyadmin
container.
It should also have generated the needed Let's Encrypt certificates in the acme.json file in the Traefik folder.
The application is available at https://phpmyadmin.example.com.
Important
You will have to use the database service name as host to connect to a database
Homer is a simple application that allows to generate a static homepage from a simple yaml
configuration file.
We will use it as a dashboard to list our services.
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style APP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_APP_PORT{{8080/tcp}}
TRAEFIK_ROUTER_APP(dashboard.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
TRAEFIK_MIDDLEWARE_IP_WHITELIST(IP whitelist)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph APP_CONTAINER[HOMER CONTAINER]
DOCKER_APP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_IP_WHITELIST
end
TRAEFIK_MIDDLEWARE_REDIRECT --> TRAEFIK_MIDDLEWARE_IP_WHITELIST
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_IP_WHITELIST --> DOCKER_APP_PORT
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
First, create a folder to hold the configuration :
sudo mkdir /opt/apps/homer
Also create an assets directory to hold the application assets and the main configuration file, it will be mounted in the container.
By default, on first run, it installs in this directory some example configuration files and assets (favicons, ...), we have disabled this by setting the environment
variable INIT_ASSETS
to 0
(default 1
).
Note that this assets directory must have the same gid / uid that the container user have (default 1000:1000
), so make sure to execute :
chown -R 1000:1000 /opt/apps/homer/assets/
Then copy :
- the docker-compose.yml file from this project's homer directory into the /opt/apps/homer directory
- the config.yml file from this project's homer directory into the /opt/apps/homer/assets directory
📄 docker-compose.yml :
version: "3.7"
services:
homer:
image: b4bz/homer:latest
container_name: homer
volumes:
- ./assets/:/www/assets
user: 1000:1000
restart: unless-stopped
environment:
- INIT_ASSETS=0
networks:
- homer-net
- traefik-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.homer.rule=Host(`dashboard.example.com`)"
- "traefik.http.routers.homer.entrypoints=websecure"
- "traefik.http.routers.homer.tls.certresolver=default"
- "traefik.http.routers.homer.middlewares=vpn-whitelist"
- "traefik.http.services.homer.loadbalancer.server.port=8080"
- "traefik.docker.network=traefik-net"
networks:
homer-net:
name: homer-net
traefik-net:
name: traefik-net
external: true
Things to notice :
- Homer's assets data is bound to a local directory named
assets
- It sets the
INIT_ASSETS
environment variable to0
to avoid generating default example data - It sets a user with uid and gid
1000
to run the application in the container - It uses Traefik labels to :
- create a service which will point to our container application running on port
8080
- create an HTTP router that will match
dashboard.example.com
URL on ourwebsecure
entrypoint to point to our service - assign the
vpn-whitelist
middleware so that the traffic will be restricted to allowed IPs only (application reachable only from local network or through VPN) - add TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
- It runs in its own network (
homer-net
) but must also share the same network as Traefik (traefik-net
) so it can be auto discovered
📄 config.yml :
header: false
footer: false
# Optional theme customization
theme: default
colors:
light:
highlight-primary: "#3367d6"
highlight-secondary: "#4285f4"
highlight-hover: "#5a95f5"
background: "#f5f5f5"
card-background: "#ffffff"
text: "#363636"
text-header: "#ffffff"
text-title: "#303030"
text-subtitle: "#424242"
card-shadow: rgba(0, 0, 0, 0.1)
link: "#3273dc"
link-hover: "#363636"
dark:
highlight-primary: "#3367d6"
highlight-secondary: "#515185"
highlight-hover: "#50668b"
background: "#131313"
card-background: "#2b2b2b"
text: "#eaeaea"
text-header: "#ffffff"
text-title: "#fafafa"
text-subtitle: "#f5f5f5"
card-shadow: rgba(0, 0, 0, 0.4)
link: "#3273dc"
link-hover: "#ffdd57"
services:
- name: "Admin tools"
icon: "fas fa-cloud"
items:
- name: "Dashdot"
logo: "https://getdashdot.com/img/logo512.png"
subtitle: "Minimal server monitoring"
tag: "dashboard"
url: "https://dashdot.example.com"
- name: "Traefik"
logo: "https://cdn.worldvectorlogo.com/logos/traefik-1.svg"
subtitle: "HTTP reverse proxy"
tag: "network"
url: "https://traefik.example.com"
- name: "Portainer"
logo: "https://cdn.worldvectorlogo.com/logos/portainer.svg"
subtitle: "Container management platform"
tag: "tool"
url: "https://portainer.example.com"
- name: "Uptime Kuma"
logo: "https://uptime.kuma.pet/img/icon.svg"
subtitle: "Application monitoring tool"
tag: "monitoring"
url: "https://kuma.example.com/status/dashboard"
- name: "WireGuard UI"
logo: "https://seeklogo.com/images/W/wireguard-logo-259B3D155A-seeklogo.com.png"
subtitle: "Simple yet fast and modern VPN"
tag: "network"
url: "https://wireguard-ui.example.com/status"
- name: "Pi-Hole"
logo: "https://pihole.example.com/admin/img/logo.svg"
subtitle: "Network-wide ad blocking"
tag: "network"
url: "https://pihole.example.com/admin"
- name: "Ackee"
logo: "https://s.electerious.com/images/ackee/icon.png"
subtitle: "Analytics tool that cares about privacy"
tag: "analytics"
url: "https://ackee.example.com"
- name: "Sablier"
logo: "https://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Circle-icons-hourglass.svg/240px-Circle-icons-hourglass.svg.png"
subtitle: "Workload scaling on demand"
tag: "tool"
- name: "Unbound"
logo: "https://i.imgur.com/cnsNS1O.png"
subtitle: "Validating, recursive, and caching DNS resolver"
tag: "network"
- name: "PhpMyAdmin"
logo: "https://icon-library.com/images/phpmyadmin-icon/phpmyadmin-icon-24.jpg"
subtitle: "MySQL database management"
tag: "tool"
url: "https://phpmyadmin.example.com"
- name: "Lychee"
logo: "https://avatars.githubusercontent.com/u/37916028?s=200&v=4"
subtitle: "Photo management tool"
tag: "tool"
url: "https://lychee.example.com"
- name: "Applications"
icon: "fas fa-globe"
items:
- name: "Motoclub GraphQL API"
logo: "https://cdn-icons-png.flaticon.com/512/705/705647.png"
subtitle: "GraphQL API for our motoclub mobile application"
tag: "app"
url: "https://ccteam.example.com/ccteam-gql/graphql"
- name: "Defrag-life"
logo: "https://cdn2.steamgriddb.com/file/sgdb-cdn/icon_thumb/946af3555203afdb63e571b873e419f6.png"
subtitle: "Quake 3 arena Defrag website"
tag: "app"
url: "https://quake.example.com"
This is simply the configuration file that is used by the application to display the dashboard page.
Finally, simply run the Compose file :
sudo docker-compose -f /opt/apps/homer/docker-compose.yml up -d
You should end-up with a running homer
container.
It should also have generated the needed Let's Encrypt certificates in the acme.json file in the Traefik folder.
The application will be available at https://dashboard.example.com.
Dashdot is a modern application to monitor server resources through a basic UI.
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style APP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_APP_PORT{{3001/tcp}}
TRAEFIK_ROUTER_APP(dashdot.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
TRAEFIK_MIDDLEWARE_IP_WHITELIST(IP whitelist)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph APP_CONTAINER[DASHDOT CONTAINER]
DOCKER_APP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_IP_WHITELIST
end
TRAEFIK_MIDDLEWARE_REDIRECT --> TRAEFIK_MIDDLEWARE_IP_WHITELIST
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_IP_WHITELIST --> DOCKER_APP_PORT
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
Create a folder to hold the configuration :
sudo mkdir /opt/apps/dashdot
Then simply copy the docker-compose.yml file from this project's dashdot directory into the /opt/apps/dashdot directory.
📄 docker-compose.yml :
version: "3.7"
services:
dashdot:
image: mauricenino/dashdot:latest
container_name: dashdot
restart: unless-stopped
volumes:
- /:/mnt/host:ro
networks:
- dashdot-net
- traefik-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.dashdot.rule=Host(`dashdot.example.com`)"
- "traefik.http.routers.dashdot.entrypoints=websecure"
- "traefik.http.routers.dashdot.tls.certresolver=default"
- "traefik.http.routers.dashdot.middlewares=vpn-whitelist"
- "traefik.http.services.dashdot.loadbalancer.server.port=3001"
- "traefik.docker.network=traefik-net"
networks:
dashdot-net:
name: dashdot-net
traefik-net:
name: traefik-net
external: true
Things to notice :
- Dashdot's data is bound to the current directory (read-only)
- It uses Traefik labels to :
- create a service which will point to our container application running on port
3001
- create an HTTP router that will match
dashdot.example.com
URL on ourwebsecure
entrypoint to point to our service - add a TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates - assign the
vpn-whitelist
middleware so that the traffic will be restricted to allowed IPs only (application reachable only from local network or through VPN) - create a middleware to whitelist an IP range via the
sourceRange
option which sets the allowed IPs to be the local and VPN client IPs (by using CIDR notation)
- create a service which will point to our container application running on port
- It runs in its own network (
dashdot-net
) but must also share the same network as Traefik (traefik-net
) so it can be auto discovered
Finally, simply run the Compose file :
sudo docker-compose -f /opt/apps/dashdot/docker-compose.yml up -d
You should end-up with a running dashdot
container.
It should also have generated the needed Let's Encrypt certificates in the acme.json file in the Traefik folder.
The application is available at https://dashdot.example.com.
Uptime Kuma is a monitoring tool allowing to monitor application uptime with a simple UI.
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style APP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_APP_PORT{{3001/tcp}}
TRAEFIK_ROUTER_APP(kuma.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
TRAEFIK_MIDDLEWARE_IP_WHITELIST(IP whitelist)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph APP_CONTAINER[UPTIME-KUMA CONTAINER]
DOCKER_APP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_IP_WHITELIST
end
TRAEFIK_MIDDLEWARE_REDIRECT --> TRAEFIK_MIDDLEWARE_IP_WHITELIST
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_IP_WHITELIST --> DOCKER_APP_PORT
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
Create a folder to hold the configuration :
sudo mkdir /opt/apps/uptime-kuma
Then simply copy the docker-compose.yml file from this project's uptime-kuma directory into the /opt/apps/uptime-kuma directory.
📄 docker-compose.yml :
version: "3.7"
services:
uptime-kuma:
image: louislam/uptime-kuma:latest
container_name: uptime-kuma
volumes:
- uptime-kuma:/app/data
restart: unless-stopped
networks:
- uptime-kuma-net
- traefik-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.uptime-kuma.rule=Host(`uptime-kuma.example.com`)"
- "traefik.http.routers.uptime-kuma.entrypoints=websecure"
- "traefik.http.routers.uptime-kuma.tls.certresolver=default"
- "traefik.http.routers.uptime-kuma.middlewares=vpn-whitelist"
- "traefik.http.services.uptime-kuma.loadbalancer.server.port=3001"
- "traefik.docker.network=traefik-net"
volumes:
uptime-kuma:
name: uptime-kuma-vol
networks:
uptime-kuma-net:
name: uptime-kuma-net
traefik-net:
name: traefik-net
external: true
Things to notice :
- Uptime Kuma's data is bound to a Docker volume named
uptime-kuma-vol
(data will be stored in /var/lib/docker/volumes) - It uses Traefik labels to :
- create a service which will point to our container application running on port
3001
- create an HTTP router that will match
uptime-kuma.example.com
URL on ourwebsecure
entrypoint to point to our service - assign the
vpn-whitelist
middleware so that the traffic will be restricted to allowed IPs only (application reachable only from local network or through VPN) - add a TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
- It runs in its own network (
uptime-kuma-net
) but must also share the same network as Traefik (traefik-net
) so it can be auto discovered
Finally, simply run the Compose file :
sudo docker-compose -f /opt/apps/uptime-kuma/docker-compose.yml up -d
You should end-up with a running uptime-kuma
container.
It should also have generated the needed Let's Encrypt certificates in the acme.json file in the Traefik folder.
The application is available at https://kuma.example.com.
Ackee is an analytics tool that analyzes the traffic of any website and provides useful statistics in a minimal interface.
We will connect it to our PHP website.
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style APP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_APP_PORT{{3000/tcp}}
TRAEFIK_ROUTER_APP(ackee.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
TRAEFIK_MIDDLEWARE_IP_WHITELIST(IP whitelist)
TRAEFIK_MIDDLEWARE_CORS(CORS)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph APP_CONTAINER[ACKEE CONTAINER]
DOCKER_APP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_CORS
TRAEFIK_MIDDLEWARE_IP_WHITELIST
end
TRAEFIK_MIDDLEWARE_REDIRECT --> TRAEFIK_MIDDLEWARE_CORS
TRAEFIK_MIDDLEWARE_CORS --> TRAEFIK_MIDDLEWARE_IP_WHITELIST
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_MIDDLEWARE_IP_WHITELIST --> DOCKER_APP_PORT
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
Create a folder to hold the configuration :
sudo mkdir /opt/apps/ackee
Then copy the docker-compose.yml and .env files from this project's ackee directory into the /opt/apps/ackee directory.
Note that Ackee requires correct CORS headers to be able to contact the target application, indeed :
- For security reasons the
Access-Control-Allow-Origin
header should only allow one domainAccess-Control-Allow-Origin: https://quake.example.com
- ackee-tracker needs the permission to send
GET
,POST
,PATCH
andOPTIONS
requests to the server.Access-Control-Allow-Methods: `GET`, `POST`, `PATCH`, `OPTIONS`
- The
Access-Control-Allow-Headers
header is used in response to a preflight request to indicate which HTTP headers can be used when making the actual request.Access-Control-Allow-Headers: Content-Type, Authorization, Time-Zone
- The
Access-Control-Allow-Credentials
header tells the browser to include the ackee_ignore cookie in requests even when you're on a different (sub-)domain. This allows Ackee to ignore your own visits.Access-Control-Allow-Credentials: true
- The
Access-Control-Max-Age
header tells the browser that allAccess-Control-Allow-*
headers can be cached for one hour. This minimizes the amount of preflight requests. Access-Control-Max-Age: 3600
These are all set using Traefik labels in the Docker service definition.
📄 .env :
ACKEE_USERNAME=<username>
ACKEE_PASSWORD=<password>
It simply defines the credentials as environment variables to be used in the Compose file.
📄 docker-compose.yml :
version: "3.7"
services:
ackee-app:
image: electerious/ackee:latest
container_name: ackee-app
depends_on:
- ackee-mongo
restart: on-failure
env_file: ./.env
environment:
- WAIT_HOSTS=ackee-mongo:27017
- ACKEE_MONGODB=mongodb://ackee-mongo:27017/ackee
networks:
- ackee-net
- traefik-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.ackee.rule=Host(`ackee.example.com`)"
- "traefik.http.routers.ackee.entrypoints=websecure"
- "traefik.http.routers.ackee.tls.certresolver=default"
- "traefik.http.routers.ackee.middlewares=corsheaders,vpn-whitelist"
- "traefik.http.services.ackee.loadbalancer.server.port=3000"
- "traefik.http.middlewares.corsheaders.headers.accesscontrolallowmethods=GET, POST, PATCH, OPTIONS"
- "traefik.http.middlewares.corsheaders.headers.accesscontrolallowheaders=Content-Type, Authorization, Time-Zone"
- "traefik.http.middlewares.corsheaders.headers.accesscontrolallowcredentials=true"
- "traefik.http.middlewares.corsheaders.headers.accesscontrolalloworiginlist=https://quake.example.com"
- "traefik.http.middlewares.corsheaders.headers.accesscontrolmaxage=3600"
- "traefik.docker.network=traefik-net"
ackee-mongo:
image: mongo
container_name: ackee-mongo
restart: unless-stopped
volumes:
- ./data:/data/db
networks:
- ackee-net
networks:
ackee-net:
name: ackee-net
traefik-net:
name: traefik-net
external: true
Things to notice :
- Uptime Kuma's data is stored in a MongoDB database which will run in its own container named
ackee-mongodb
. MongoDB's data is bound to a data directory in the current directory - It uses Traefik labels on the
ackee-app
container to :- create a service which will point to our container application running on port
3001
- create an HTTP router that will match
uptime-kuma.example.com
URL on ourwebsecure
entrypoint to point to our service - assign the
vpn-whitelist
middleware so that the traffic will be restricted to allowed IPs only (application reachable only from local network or through VPN) - create a
corsheaders
middleware to set the CORS configuration required by Ackee - add a TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
- It runs in its own network (
uptime-kuma-net
) but must also share the same network as Traefik (traefik-net
) so it can be auto discovered
Finally, simply run the Compose file :
sudo docker-compose -f /opt/apps/uptime-kuma/docker-compose.yml up -d
You should end-up with 2 running containers :
ackee-app
container holding the applicationackee-mongodb
container holding the MongoDB database
It should also have generated the needed Let's Encrypt certificates in the acme.json file in the Traefik folder.
The application is available at https://ackee.example.com.
To track a website, simply follow the instruction by adding the required embed code in the target pages.
Lychee is a photo management tool that allow to upload, manage and share photos. I pick this one out of all the others because it is quite simple, it doesn't have too many extras that I don't need. It also allows to directly use EXIF data to be used as title, etc. or to display a map.
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style APP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SINGLE_BOARD_COMPUTER fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_APP_PORT{{80/tcp}}
TRAEFIK_ROUTER_APP(lychee.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SINGLE_BOARD_COMPUTER[BANANA PI M5]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph APP_CONTAINER[LYCHEE CONTAINER]
DOCKER_APP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
end
TRAEFIK_MIDDLEWARE_REDIRECT --> DOCKER_APP_PORT
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
end
end
end
No IP whitelisting here as this service will be open to the internet without restriction.
Create a folder to hold the configuration :
sudo mkdir /opt/apps/lychee
Then copy the docker-compose.yml file from this project's lychee directory into the /opt/apps/lychee directory.
📄 docker-compose.yml :
version: "3.7"
services:
lychee:
image: lycheeorg/lychee
container_name: lychee
volumes:
- ./lychee/conf:/conf
- ./lychee/uploads:/uploads
- ./lychee/sym:/sym
- ./lychee/logs:/logs
environment:
- PHP_TZ=UTC
- TIMEZONE=UTC
- DB_CONNECTION=mysql
- DB_HOST=lychee-db
- DB_PORT=3306
- DB_DATABASE=lychee
- DB_USERNAME=lychee
- DB_PASSWORD=password
- STARTUP_DELAY=30
- ADMIN_USER=admin
- ADMIN_PASSWORD=password
- APP_URL=https://lychee.example.com
- TRUSTED_PROXIES=*
depends_on:
- lychee-db
restart: unless-stopped
networks:
- lychee-net
- traefik-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.lychee.rule=Host(`lychee.example.com`)"
- "traefik.http.routers.lychee.entrypoints=websecure"
- "traefik.http.routers.lychee.tls.certresolver=default"
- "traefik.http.services.lychee.loadbalancer.server.port=80"
- "traefik.docker.network=traefik-net"
lychee-db:
container_name: lychee-db
image: arm64v8/mariadb:latest
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=password
- MYSQL_DATABASE=lychee
- MYSQL_USER=lychee
- MYSQL_PASSWORD=password
volumes:
- lychee-db-vol:/var/lib/mysql
networks:
- lychee-net
volumes:
lychee-db-vol:
name: lychee-db-vol
networks:
lychee-net:
name: lychee-net
traefik-net:
name: traefik-net
external: true
Things to notice :
- Lychee's MariaDB data is bound to a Docker volume named
lychee-db-vol
(data will be stored in /var/lib/docker/volumes) - We added some volumes, so we have access to some data locally, like uploaded images
- We define some environment variables required by the application (like application admin credentials, database credentials, timezone, etc.)
- It uses Traefik labels to :
- create a service which will point to our container application running on port
80
- create an HTTP router that will match
lychee.example.com
URL on ourwebsecure
entrypoint to point to our service - add a TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
- It runs in its own network (
lychee-net
) but must also share the same network as Traefik (traefik-net
) so it can be auto discovered
Finally, simply run the Compose file :
sudo docker-compose -f /opt/apps/lychee/docker-compose.yml up -d
You should end-up with 2 running containers :
lychee
: The applicationlychee-db
: The MariaDB database
It should also have generated the needed Let's Encrypt certificates in the acme.json file in the Traefik folder.
The application is available at https://lychee.example.com.
Note
Lychee uses EXIF data of the photos files to display information like title or to display locations on a map, so if you want clean galleries and accurate map, make sure to have the EXIF data completed correctly.
Defrag-life is a PHP / MySQL website I made in the early 2000's, about the DeFRaG mod of the Quake 3 arena game. The project can be found here : https://github.com/Yann39/defrag-life I simply keep hosting it as a souvenir, but it is a static snapshot, it is not intended to be used anymore.
We will use Nginx as HTTP server along with the PHP-FPM module (FastCGI Process Manager) for processing PHP files. At the time of writing this is the preferred method of processing PHP pages with Nginx and is faster than traditional CGI-based methods.
The website also requires a MySQL or MariaDB database, we will use MariaDB.
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style NGINX_CONTAINER fill:#663535,color:#fff
style PHP_CONTAINER fill:#663535,color:#fff
style MARIADB_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SERVER_DEVICE fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_NGINX_PORT{{80/tcp}}
DOCKER_PHP_PORT{{9000/tcp}}
DOCKER_MARIADB_PORT{{3306/tcp}}
TRAEFIK_ROUTER_APP(quake.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SERVER_DEVICE[MINI_PC]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph NGINX_CONTAINER[NGINX CONTAINER]
DOCKER_NGINX_PORT
end
subgraph PHP_CONTAINER[PHP-FPM CONTAINER]
DOCKER_PHP_PORT
end
subgraph MARIADB_CONTAINER[MARIADB CONTAINER]
DOCKER_MARIADB_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 --> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
end
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_REDIRECT --> DOCKER_NGINX_PORT
DOCKER_NGINX_PORT --> DOCKER_PHP_PORT
DOCKER_PHP_PORT --> DOCKER_MARIADB_PORT
end
end
end
First, create a folder to hold the configuration :
sudo mkdir /opt/apps/defrag-life
Also create a data directory to hold the application files (PHP, HTML, CSS, Javascript files) :
mkdir /opt/apps/defrag-life/data
and copy inside that folder the content from https://github.com/Yann39/defrag-life.
Then copy the files from this project's defrag-life directory into the /opt/apps/defrag-life directory :
- Dockerfile : The file responsible for building image of PHP-FPM
- docker-compose.yml : The definition of the services
- .env : The environment variables (for database connection)
- default.conf : The Nginx configuration
- www.conf : The PHP-FPM pool configuration
📄 Dockerfile :
FROM php:8.2-fpm-alpine
LABEL maintainer="Yann39"
# Install mysqli extension
RUN docker-php-ext-install mysqli
RUN addgroup --gid 1000 --system phpuser && \
adduser --uid 1000 --system phpuser --ingroup phpuser && \
chown -R phpuser:phpuser /var/www/html && \
chmod -R 644 /var/www/html
USER 1000
# Start PHP-FPM
CMD ["php-fpm"]
This Dockerfile allows us to create the Docker image for the PHP-FPM service, the image is based on the popular Alpine Linux project, which is much smaller than most distribution base images.
In this Dockerfile we also install the mysqli extension which will be required to connect to the MariaDB database from PHP.
Finally, we create a phpuser
user that will run the process (for security purposes we always ensure that our images run as non-root).
In order to use this image, an HTTP server or a reverse proxy (such as Nginx, Apache, or other tool which speaks the FastCGI protocol) is required, that's why we use Nginx.
📄 docker-compose.yml :
version: "3.7"
services:
nginx:
image: nginx:latest
container_name: defrag-life-nginx
volumes:
- ./data/:/var/www/html/
- ./default.conf:/etc/nginx/conf.d/default.conf
restart: unless-stopped
networks:
- defrag-life-net
- traefik-net
labels:
- "traefik.enable=true"
- "traefik.http.routers.defrag-life.rule=Host(`quake.example.com`)"
- "traefik.http.routers.defrag-life.entrypoints=websecure"
- "traefik.http.routers.defrag-life.tls.certresolver=default"
- "traefik.http.services.defrag-life.loadbalancer.server.port=80"
- "traefik.docker.network=traefik-net"
php-fpm:
build:
context: .
dockerfile: ./Dockerfile
container_name: defrag-life-php
networks:
- defrag-life-net
volumes:
- ./data/:/var/www/html/
- ./www.conf:/usr/local/etc/php-fpm.d/www.conf
mariadb:
image: mariadb:latest
container_name: defrag-life-db
restart: unless-stopped
env_file: ./.env
environment:
- MARIADB_AUTO_UPGRADE="1"
- MARIADB_ROOT_PASSWORD=$MARIADB_ROOT_PASSWORD
- MARIADB_DATABASE=$MARIADB_DATABASE
- MARIADB_USER=$MARIADB_USER
- MARIADB_PASSWORD=$MARIADB_PASSWORD
volumes:
- defrag-life-db-vol:/var/lib/mysql
networks:
- defrag-life-net
- phpmyadmin-net
volumes:
defrag-life-db-vol:
name: defrag-life-db-vol
networks:
defrag-life-net:
name: defrag-life-net
traefik-net:
name: traefik-net
external: true
phpmyadmin-net:
name: phpmyadmin-net
external: true
Here we define 3 services :
nginx
: the HTTP server which will speak with the PHP-FPM service to interpret PHP files (whenever the server gets a PHP script request, it utilizes a proxy, FastCGI connection to pass that request on to the PHP-FPM service)- It defines 2 volumes to bind the website files and the Nginx configuration file (see Nginx configuration file)
- It uses Traefik labels to :
- create a service which will point to our container application running on port
80
- create an HTTP router that will match
quake.example.com
URL on ourwebsecure
entrypoint to point to our service - add TLS configuration that will use our
default
certificates resolver, so it can generate Let's encrypt certificates
- create a service which will point to our container application running on port
php-fpm
: the PHP-FPM service responsible for processing PHP scripts- It uses our own Dockerfile, see Dockerfile
- It defines 2 volumes to bind the website files and the PHP-FPM pool configuration file (see PHP-FPM configuration file)
- It will run by default on port
9000
mariadb
: The MariaDB database that will hold the application data- It uses our .env file to retrieve environment variables values for database connection
- It defines a named volume
defrag-life-db-vol
that will hold the database data (volume data will be stored in /var/lib/docker/volumes) - It will run by default on port
3306
All services will run in a defrag-life-net
network, but must also share the same network as Traefik (traefik-net
) so it can be auto discovered,
and phpmyadmin-net
so that the database is reachable from PhpMyAdmin, see PhpMyAdmin.
📄 .env :
MARIADB_ROOT_PASSWORD=<root_password>
MARIADB_DATABASE=<db_name>
MARIADB_USER=<username>
MARIADB_PASSWORD=<password>
It simply set environment variable values (used in the mariadb
service in the Compose file).
📄 www.conf :
; Start a new pool named 'www'.
[www]
; Unix user/group of the child processes.
user = www-data
group = www-data
; The address on which to accept FastCGI requests.
listen = 127.0.0.1:9000
; Choose how the process manager will control the number of child processes.
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
; The ping URI to call the monitoring page of FPM.
ping.path = /ping
; This directive may be used to customize the response of a ping request.
ping.response = pong
This is a quite basic configuration file for Nginx, we just enabled ping, so we can ping the service from monitoring tool like Uptime-Kuma.
📄 default.conf :
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /var/www/html;
index index.php index.html;
error_log /var/log/nginx/error.log;
access_log /var/log/nginx/access.log;
location ~ \.php$ {
include fastcgi_params;
try_files $uri =404;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_pass php-fpm:9000;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
}
location ~ ^/ping$ {
access_log off;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass php-fpm:9000;
}
}
This is also a quite basic configuration file for PHP-FPM :
- it listens for incoming requests on port
80
(and set it as default server, although it is the only one) - it sets the server name to an invalid server names which never intersect with any real name
(as they are only one server blocks for port
80
, Nginx will not even bother comparingserver_name
with a request's Host header, all the requests would be directed there anyway) - it sets the root directory to
/var/www/html
for static content in the file system - it defines files that will be used as an index (index.php and index.html)
- it defines the location of error and access log files
- it sets a location to match PHP files (
.php$
will match files ending with .php, .php3, etc.) to be processed by our PHP-FPM service - it sets a location to match /ping endpoint to ping our PHP-FPM service
Finally, simply run the Compose file :
sudo docker-compose -f /opt/apps/defrag-life/docker-compose.yml up -d
You should end-up with 3 running containers :
defrag-life-nginx
: The HTTP serverdefrag-life-php
: The PHP-FPM servicedefrag-life-mariadb
: The MariaDB database
It should also have generated the needed Let's Encrypt certificates in the acme.json file in the Traefik folder.
The application will be available at https://quake.example.com.
Create a directory to hold the app :
mkdir /opt/apps/ccteam
cd /opt/apps/ccteam
Create the Dockerfile and docker-compose.yml files based on the files in the ccteam folder in this project.
In the same directory, create a .env file to hold the environment variables :
MARIADB_ROOT_PASSWORD=<root_password>
MARIADB_DATABASE=<db_name>
MARIADB_USER=<username>
MARIADB_PASSWORD=<password>
MAIL_SERVER_HOST=<mail_server_host>
MAIL_SERVER_PORT=<mail_server_port>
MAIL_SERVER_USERNAME=<mail_server_username>
MAIL_SERVER_PASSWORD=<mail_server_password>
JWT_SECRET=<jwt_secret>
JWT_EXPIRATION_TIME=<jwt_expiration_time>
Move the application JAR file (ccteam-graphql.jar) into the current directory.
Start :
sudo docker-compose up -d
This will create 2 containers :
- A container holding the MariaDB database
- A container holding the Java application (based on the provided Dockerfile), exposed on port 5001
Then the API is available at : https://ccteam.example.com/ccteam-gql/graphql
You will get access denied as you need a valid JWT token, but it confirms that the service is running correctly :
{
"errors": [
{
"cause": null,
"stackTrace": null,
"extensions": {
"errorCode": "no_token"
},
"errorType": "DataFetchingException",
"locations": null,
"message": "Full authentication is required to access this resource",
"path": null,
"suppressed": [],
"localizedMessage": "Full authentication is required to access this resource"
}
],
"data": null
}
Some of our services will be accessed quite rarely (i.e. UIs of monitoring tools, websites open only to family through VPN, etc.), it would be a shame to leave them running for days and waste resources while there are no requests, wouldn't it ?
That's why we're going to use Sablier, a little tool that lets you start / stop containers on demand (also known as "scale-to-zero"). Basically it allows to start a container when a request arrives, and stop it after a period of inactivity.
Sablier provides 2 strategies, a dynamic strategy which provides a waiting page while the container is not ready, and a blocking strategy which hangs the request until the container is ready.
We will use the dynamic strategy, well suited for a user that would access a frontend directly and expects to see a loading page. The blocking strategy is better suited for API communication.
Basically here is how it works when using the dynamic strategy with Traefik :
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style SABLIER_CONTAINER fill:#663535,color:#fff
style APP_CONTAINER fill:#663535,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
DOCKER_SABLIER_PORT{{10000/tcp}}
DOCKER_APP_PORT{{myapp port}}
WAITING_PAGE(waiting page)
TRAEFIK_MIDDLEWARE_APP(sablier-myapp)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> TRAEFIK_MIDDLEWARE_APP
subgraph SABLIER_CONTAINER[SABLIER CONTAINER]
DOCKER_SABLIER_PORT
WAITING_PAGE
end
subgraph APP_CONTAINER[APP CONTAINER]
DOCKER_APP_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_APP
end
TRAEFIK_MIDDLEWARE_APP -.->|request session status| DOCKER_SABLIER_PORT
DOCKER_SABLIER_PORT -.->|"return status header"| TRAEFIK_MIDDLEWARE_APP
TRAEFIK_MIDDLEWARE_APP -->|"ready"| DOCKER_APP_PORT
TRAEFIK_MIDDLEWARE_APP -->|"not ready"| WAITING_PAGE
DOCKER_APP_PORT -.->|return instance status| DOCKER_SABLIER_PORT
DOCKER_SABLIER_PORT -.->|"check instance status"| DOCKER_APP_PORT
end
When a request arrives, a Traefik middleware is responsible to contact Sablier to know if the target container is ready or not.
Sablier asks for the container status to the Docker provider, then return the result to the proxy, to either serve the waiting page or redirect to the application.
It is done through a X-Sablier-Status
request header value :
sequenceDiagram
User->>Proxy: Website Request
Proxy->>Sablier: Reverse Proxy Plugin Request Session Status
Sablier->>Provider: Request Instance Status
Provider-->>Sablier: Response Instance Status
Sablier-->>Proxy: Returns the X-Sablier-Status Header
alt X-Sablier-Status` value is `not-ready`
Proxy-->>User: Serve the waiting page
loop until `X-Sablier-Status` value is `ready`
User->>Proxy: Self-Reload Waiting Page
Proxy->>Sablier: Reverse Proxy Plugin Request Session Status
Sablier->>Provider: Request Instance Status
Provider-->>Sablier: Response Instance Status
Sablier-->>Proxy: Returns the waiting page
Proxy-->>User: Serve the waiting page
end
end
Proxy-->>User: Content
As you see it continuously checks for instance status until it is ready, and will intend to start the underlying container if not started, or shut it down if it has reached the configured period of inactivity.
Note
Note that you need one plugin configuration (one middleware) per application set if you want to start/stop them independently
or if you want to have different theme, display name, loading strategy or session duration.
In the flow chart above, sablier-app
is a dedicated middleware for "myapp" application, but you could have several of them.
Sablier can be installed using the binary distribution, or through Docker. We will use the Docker image.
Create a folder to hold the configuration :
sudo mkdir /opt/apps/sablier
Then copy the docker-compose.yml file from this project's sablier directory into the /opt/apps/sablier directory.
📄 docker-compose.yml :
version: "3.7"
services:
sablier:
image: acouvreur/sablier:latest
container_name: sablier
volumes:
- /var/run/docker.sock:/var/run/docker.sock
restart: unless-stopped
command:
- start
- --provider.name=docker
networks:
- sablier-net
- traefik-net
labels:
- "traefik.enable=true"
# here we will add middleware configuration, see later in this guide
networks:
sablier-net:
name: sablier-net
traefik-net:
name: traefik-net
external: true
Essentially :
- We bind the Docker socket to the container because the Docker provider communicates with the docker.sock socket to start and stop containers on demand
- We specify the command to start the server with the parameter to set the provider name (docker)
- It runs in its own network (
sablier-net
) but must also share the same network as Traefik (traefik-net
) so it can be discovered
There are plugins available for easier integration with major reverse proxies, Traefik in particular. Sablier is designed as an API that can be used on its own, reverse proxy integrations acts as a client of that API.
Thus, simply add the following into the Traefik static configuration file (traefik.yml) to load the plugin :
experimental:
plugins:
sablier:
moduleName: "github.com/acouvreur/sablier"
version: "v1.7.0"
You can take a look at the apps/traefik/traefik.yml file from this repository.
In order for Sablier to be able to contact the containers to start and stop them, we need to change the configuration of the target service to use a dynamic configuration file instead of Docker labels. Indeed, Traefik no longer has access to container labels when a container is not running.
We will configure Sablier for the Dashdot application as an example, but it can be applied to any container :
flowchart LR
style INCOMING_REQUEST fill:#205566,color:#fff
style TRAEFIK_CONTAINER fill:#663535,color:#fff
style SABLIER_CONTAINER fill:#663535,color:#fff
style DASHDOT_CONTAINER fill:#663535,color:#fff
style TRAEFIK_ROUTER fill:#806030,color:#fff
style TRAEFIK_MIDDLEWARE fill:#806030,color:#fff
style SERVER_DEVICE fill:#665555,color:#fff
style CONTAINER_ENGINE fill:#664545,color:#fff
DOCKER_TRAEFIK_PORT443{{433/tcp}}
DOCKER_TRAEFIK_PORT80{{80/tcp}}
DOCKER_SABLIER_PORT{{10000/tcp}}
DOCKER_DASHDOT_PORT{{3001/tcp}}
WAITING_PAGE(Waiting page)
TRAEFIK_ROUTER_APP(dashdot.example.com)
TRAEFIK_MIDDLEWARE_REDIRECT(HTTPS redirect)
TRAEFIK_MIDDLEWARE_DASHDOT(sablier-dashdot)
INCOMING_REQUEST((INCOMING<br/>REQUEST))
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT443
INCOMING_REQUEST --> DOCKER_TRAEFIK_PORT80
subgraph SERVER_DEVICE[MINI_PC]
subgraph CONTAINER_ENGINE[DOCKER]
subgraph SABLIER_CONTAINER[SABLIER CONTAINER]
DOCKER_SABLIER_PORT
WAITING_PAGE
end
subgraph DASHDOT_CONTAINER[DASHDOT CONTAINER]
DOCKER_DASHDOT_PORT
end
subgraph TRAEFIK_CONTAINER[TRAEFIK CONTAINER]
DOCKER_TRAEFIK_PORT443 --> TRAEFIK_ROUTER
DOCKER_TRAEFIK_PORT80 ---> TRAEFIK_ROUTER
subgraph TRAEFIK_ROUTER[TRAEFIK HTTP ROUTER]
TRAEFIK_ROUTER_APP
end
subgraph TRAEFIK_MIDDLEWARE[TRAEFIK MIDDLEWARES]
TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_DASHDOT
end
TRAEFIK_MIDDLEWARE_REDIRECT --> TRAEFIK_MIDDLEWARE_DASHDOT
TRAEFIK_MIDDLEWARE_REDIRECT -.-> DOCKER_TRAEFIK_PORT443
TRAEFIK_ROUTER_APP --> TRAEFIK_MIDDLEWARE_REDIRECT
TRAEFIK_MIDDLEWARE_DASHDOT -->|check status| DOCKER_SABLIER_PORT
DOCKER_SABLIER_PORT -->|return status| TRAEFIK_MIDDLEWARE_DASHDOT
TRAEFIK_MIDDLEWARE_DASHDOT -->|ready| DOCKER_DASHDOT_PORT
TRAEFIK_MIDDLEWARE_DASHDOT -->|not ready| WAITING_PAGE
end
end
end
In the above flow chart we have named the Traefik middleware sablier-dashdot
because it is specific to the Dashdot application,
but you can absolutely create one to manage several services, or one for each service.
So let's transfer the labels from the service configuration file to a file in our Traefik dynamic configuration. I personally use a file per service, for example for Dashdot, the configuration will be held in a file dashdot.yml in the dynamic folder :
Note that you need to define a volume to bind Traefik dynamic configuration to the container, in addition to the static configuration (simply create a dynamic folder in /opt/apps/traefik) :
sudo mkdir /opt/apps/traefik/dynamic
sudo vi /opt/apps/traefik/dynamic/dashdot.yml
Then add the volume in the Traefik service configuration (docker-compose.yml) :
volumes:
- ./dynamic:/etc/traefik/dynamic:ro
So Traefik will handle every YAML file placed in the dynamic directory.
That's it, the following labels :
labels:
- "traefik.enable=true"
- "traefik.http.routers.dashdot.rule=Host(`dashdot.example.com`)"
- "traefik.http.routers.dashdot.entrypoints=websecure"
- "traefik.http.routers.dashdot.tls.certresolver=default"
- "traefik.http.routers.dashdot.middlewares=vpn-whitelist"
- "traefik.http.services.dashdot.loadbalancer.server.port=3001"
- "traefik.docker.network=traefik-net"
becomes the following inside dashdot.yml :
http:
services:
dashdot:
loadBalancer:
servers:
- url: http://dashdot:3001
routers:
dashdot:
rule: 'Host(`dashdot.example.com`)'
entryPoints:
- websecure
tls:
certResolver: default
service: dashdot
middlewares:
- vpn-whitelist@docker
- sablier-dashdot@docker
As you see, the only thing we added is the sablier-dashdot
middleware reference,
which defines the strategy to use to respond to any incoming HTTP request when the corresponding container is not running :
Then add the labels for the sablier-dashdot
middleware configuration into the sablier
service configuration (docker_compose.yml file) :
labels:
- "traefik.enable=true"
# Dashdot
- "traefik.http.middlewares.sablier-dashdot.plugin.sablier.names=dashdot"
- "traefik.http.middlewares.sablier-dashdot.plugin.sablier.sablierUrl=http://sablier:10000"
- "traefik.http.middlewares.sablier-dashdot.plugin.sablier.sessionDuration=5m"
- "traefik.http.middlewares.sablier-dashdot.plugin.sablier.dynamic.theme=hacker-terminal"
- "traefik.http.middlewares.sablier-dashdot.plugin.sablier.dynamic.displayName=Dashdot"
- "traefik.http.middlewares.sablier-dashdot.plugin.sablier.dynamic.refreshFrequency=1s"
- "traefik.http.middlewares.sablier-dashdot.plugin.sablier.dynamic.showDetails=true"
Add here any other middleware that would need a different configuration for other services.
Basically, it defines a Traefik middleware to configure the Sablier plugin to :
- Provide the name of the service(s) to be checked
- The URL to Sablier
- The session duration (will stop the container after that period)
- The theme for the waiting page
- The display name of the target service(s), to be displayed on the waiting page
- The refresh frequency of the waiting page
- Show the loading instances details
Here is how the "hacker-terminal" waiting page looks like while starting the Dashdot container :
We have so far set up a structure with a folder per stack/container (in /opt/apps). That way each stack definition (Docker Compose file) and bind mount data is fully contained in that single folder.
The only exception is named volumes, which store data in the /var/lib/docker/volumes directory. This includes the databases of some applications, which could also be backed up separately using the tool associated with the database management system.
This is the only data that really concerns us, thanks to Docker, the system has hardly been modified at all, so there's no need to back it up completely (like doing entire system image backup).
So there are three things we have to worry about in terms of backup :
- the content of the /opt/apps directory, holding services configuration and containers bound data
- the content of the /var/lib/docker/volumes, holding the Docker container named volumes data
- the databases (i.e. MySQL for Defrag-Life website, MongoDB for Ackee application, ...)
Later we can even place volume backups and database exports in the /opt/apps directory so that we can back up everything in one place easily.
The simplest way to back up the content of our N100 server is by using rsync
.
rsync
(remote sync) is a utility for transferring and synchronizing files between a computer and a storage drive
and across networked computers by comparing the modification times and sizes of files.
We can use it to copy the file system (actually only required files) to another machine (such as a Windows computer on the local network, or any external drive connected to it) through a mount point.
-
First, make sure to have a folder on the machine that will hold the backup (Windows in my case) that is shared and have enough storage for the server backup :
- Create a folder to hold the backup data (i.e. E:\data\N100 backup),
- Right-click on the folder
- Select Properties > Sharing tab
- Click Share... and choose the user with whom you want to share the folder (you can either use your default Windows user or create a specific user for that)
- Assign the appropriate permissions (at least Read access).
- Click Share, then Done.
- Take note of the network path of the share (i.e. \DESKTOP-ABCDEF\N100 backup).
-
Secondly, mount the shared Windows folder on the server :
To mount a Windows share, you need to install the cifs-utils package :
sudo apt install cifs-utils
Then create a directory where you will mount the shared folder. For example:
sudo mkdir /mnt/windows
And mount the shared folder from the Windows machine to the server :
sudo mount -t cifs -o username=my_windows_user "//DESKTOP-ABCDEF/N100 backup" /mnt/windows
Explanation:
-t cifs
: Specifies that you’re using the CIFS protocol//DESKTOP-ABCDEF/N100 backup
: The network path to the Windows share/mnt/windows
: The mount point on the server
[!NOTE] You can create a file to hold the credentials for authentication, instead of specifying it in the command line (so you can protect the credentials file by setting the appropriate permissions), this can be done by using the
-o credentials
option of themount
command -
Finally, use
rsync
to synchronize the files to the mount point :Install
rsync
:sudo apt install rsync
Then either sync all the file system or only some folders :
# all file system with some exceptions sudo rsync -aAXv --exclude={"/dev/*","/proc/*","/sys/*","/tmp/*","/run/*","/mnt/*","/media/*","/lost+found"} / /mnt/windows # only specified paths sudo rsync -aAXv /home /opt/apps /var/lib/docker/volumes /var/log /mnt/windows
Explanation:
-aAXv
: Preserve permissions, ownership, timestamps, and device files, with verbose output--exclude
: Exclude certain directories/
: The root of the server, to be backed up (without excluded directories)/home /opt/apps /var/lib/docker/volumes /var/log
: The 4 directories to be backed up/mnt/windows
: The mount point on the server
Once the backup is complete, you can verify that the backup files are on the destination machine and that they contain all your server data.
Note
If you want to make a bit-for-bit clone of your entire disk, you can use the dd
command.
However, it requires more storage and time, for the time being I prefer rsync
for flexibility, file-based backups, and faster cloning of only necessary files
Another solution than rsync is to simply use a tool from the Windows machine, to copy the /opt/apps folder regularly through SFTP.
One awesome tool which I've been using for years for synchronizing my disks, is named FreeFileSync.
FreeFileSync is a folder comparison and synchronization software that creates and manages backup copies of target files. Instead of copying every file every time, FreeFileSync determines the differences between a source and a target folder and transfers only the minimum amount of data needed.
Source and target folders can be remote folders (support for Google Drive and FTP/SFTP).
FreeFileSync is Open Source software, available for Windows, macOS, and Linux.
I will install the Windows version on my home Windows machine, which will be used as client to connect to the Banana Pi board through SFTP (SSH File Transfer Protocol, allows secure file transfer trough SSH encrypted connections).
To do a mirror synchronization :
-
Download the software for your operating system at https://freefilesync.org/
-
Install and start it
-
Choose left and right folders :
Click the cloud icon to connect to the Banana Pi board via SFTP and select the /opt/apps folder
-
Compare them :
-
Adapt synchronization settings if needed :
-
Start synchronization :
Refer to the documentation and tutorials on the software's website for more information.
We can back up Docker volumes using docker run
and tar
command.
This method involves creating a temporary container that mounts the named volume we want to back up, then using tar to produce an archive of the volume content.
For example to back up the Portainer volume portainer-vol
to the current directory :
sudo docker run --rm --mount source=portainer-vol,target=/mybackup -v $(pwd):/backup busybox tar cvf /backup/portainer-vol-backup.tar /mybackup
--rm
will remove the container when it exits--mount source=portainer-vol,target=/mybackup
will mount theportainer-vol
volume to the container mount point/mybackup
-v $(pwd):/backup
bind mount the current directory into the container'sbackup
directory to write the tar file tobusybox
is an image of a lightweight Linux distribution with basic Unix utilities, good for that kind of quick maintenancetar cvf /backup/portainer-vol-backup.tar /mybackup
will create an uncompressed tar file of all the files in the/mybackup
directory
This will create a portainer-vol-backup.tar archive in the current directory. The tar will contain a mybackup directory containing all volume data.
Then feel free to move it to the /opt/apps/portainer directory if you want to back it up along with that directory when using FreeFileSync (see Files), or simply move the backup file to an external server.
Important
Some services may need to be stopped during backup or restore to ensure data consistency
To restore the volume :
-
Create a new container (this represents the container in which you wish to restore the backup) :
sudo docker create -v /data --name newcontainer busybox /bin/bash
-
Untar the backup files into the new container volume :
sudo docker run --rm --volumes-from newcontainer -v $(pwd):/backup busybox tar -xvf /backup/portainer-vol-backup.tar --strip 1 -C /data
--rm
will remove the container when it exits--volumes-from newcontainer
mounts all the volumes from thenewcontainer
container into the new container being started-v $(pwd):/backup
bind mount the current directory into the container's/backup
directory to write the tar file tobusybox
is an image of a lightweight Linux distribution with basic Unix utilities, good for that kind of quick maintenancetar xvf /backup/portainer-vol-backup.tar --strip 1 -C /data
will extract the files from the tar archive in the/data
directory of the container's filesystem (without the parent directory thanks to--strip 1
)
Finally, you can compare the 2 volumes content to check that everything has been copied correctly :
sudo diff -qr /var/lib/docker/volumes/portainer-vol /var/lib/docker/volumes/0862be139e8b9e8137c02005739071d2338fd04f6090b8a89d6b5012fc5fb33a
When applicable, we can also back up the database directly.
For MySQL, we can use mysqldump, a command-line utility that is used to generate or restore logical backups of MySQL databases.
To export data :
mysqldump --complete-insert --skip-comments --skip-tz-utc --skip-opt --hex-blob --no-set-names --set-charset --column-statistics=0 --set-gtid-purged=OFF -P 3306 -h localhost -u <user> -p <dbname> > db_backup.sql
If you don't have the mysqldump utility installed on your environment, you can use the one embedded in the MySQL container :
docker exec <container_id> /usr/bin/mysqldump --complete-insert --skip-comments --skip-tz-utc --skip-opt --hex-blob --no-set-names --set-charset --column-statistics=0 --set-gtid-purged=OFF -P 6033 -h prdmysql.unil.ch -u <user> --password=<password_here> <dbname> > db_backup.sql
Important
Again there is a slight chance that a database gets inconsistent when backing up hot files, so prefer to stop services before proceeding, but in a home lab with minimal load this is usually not an issue
To import data :
mysql -P 3306 -h localhost -u <user> -p <dbname> < db_backup.sql
Or again if you don't have the mysqldump utility installed on your environment, you can use the one from the MySQL container :
docker exec -i <container_id> /usr/bin/mysql -P 3306 -h localhost -u <user> --password=<password_here> <dbname> < db_backup.sql
You are invited to contribute fixes or updates. I'm also open to any criticism or suggestion for improvement.
Please familiarize yourself with the README file before attempting a pull request. Also make sure to not include any sensitive information.
You can also simply fork the project and continue on your own.
Mainly :
- Some cool GitHub projects related to self-hosting :
- Various threads on Reddit, but especially in :
- StackExchange network (particularly Stack Overflow, Superuser, and Server Fault):
- Blog post about WireGuard performance tuning :
- Lots of Google searches
Of course every upstream project (especially the ones with good documentation 😁) also deserve credit 🍺
Please refer to the license of each product mentioned in this guide.
Otherwise, the GPL v3 license applies.
General Public License (GPL) v3
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.