Home-Server Docker Setup
tooling uses deployment docker[!tldr] All services on my Home-Server run as Docker container.
For external access, I use Traefik as ingress router. Other ports are made available with Docker MacVLAN.
Basic Setup
- All services are bundled as
docker-compose.yml
- Traefik is my ingress router.
- with
labels
I configure the routing with Traefik - Traefik is the only Container with a port-binding to the host:
:80:80
- with
- A dedicated Docker Network
webproxy
is used for all services that should be available viahttp
- All services that are required internally (i.e. databases) are only available in a dedicated network for the
docker-compose
setup and not reachable from outside. - PiHole is used for local DNS.
- PiHoles DNS listener is made availabe via Docker MacVLAN on a dedicated IP address
- PiHole Admin GUI is made available with Traefik