This repository contains the Docker Compose configuration for a comprehensive home lab setup running on a Raspberry Pi (optimized for Pi 5). It integrates various self-hosted services using a custom bridge network and Tailscale for secure remote access.
The stack is designed to be efficient and secure, utilizing Caddy as a reverse proxy with Cloudflare DNS validation for automatic SSL certificates. A specific subnet (10.8.1.0/24) is used to assign static IPs to containers, facilitating easy internal DNS resolution via Pi-hole.
- Caddy: Reverse proxy handling
*.pi.rahulja.indomains. - Tailscale: VPN and subnet router for secure remote access.
- Pi-hole: Network-wide ad blocking and local DNS.
- Cloudflared: DNS-over-HTTPS (DoH) tunnel for secure upstream DNS.
The following diagram illustrates the simplified flow of DNS resolution (dotted lines) and Secure Access (solid lines).
graph TD
%% --- Clients & External ---
subgraph Remote ["User & Internet"]
user((User Device))
magicdns[Tailscale MagicDNS]
internet((Internet))
end
%% --- The Server ---
subgraph Server ["Raspberry Pi Home Server"]
%% Entry Point
subgraph Gateway ["Secure Gateway"]
ts["Tailscale VPN<br/>(10.8.1.48)"]
caddy[Caddy Proxy]
end
%% Internal Network
subgraph Internal ["Private Docker Network (10.8.1.0/24)"]
pihole["Pi-hole DNS<br/>(10.8.1.3)"]
cloudflared["Cloudflared DoH<br/>(10.8.1.4)"]
apps["Applications<br/>(Immich, N8n, etc.)"]
db["Databases & Cache<br/>(Postgres, Redis)"]
end
storage[("USB Storage<br/>/mnt/usb")]
end
%% --- FLOW 1: DNS Resolution (Dotted) ---
user -.-|1. Lookup *.pi.rahulja.in| magicdns
magicdns -.-|2. Split DNS| pihole
apps -.-|Internal DNS| pihole
pihole -.-|3. Upstream| cloudflared
cloudflared -.-|4. DoH| internet
%% --- FLOW 2: Secure Access (Solid / Thick) ---
user ===|5. HTTPS Tunnel| ts
ts ===|6. Handoff| caddy
caddy ===|7. Proxy| apps
%% --- Dependencies ---
apps --> db
apps --> storage
db --> storage
%% --- Styling ---
style user fill:#f9f,stroke:#333,stroke-width:2px
style magicdns fill:#fff2cc,stroke:#d6b656
style ts fill:#cce5ff,stroke:#333
style caddy fill:#cce5ff,stroke:#333
style apps fill:#e5ffcc,stroke:#333
The following services are configured with static IPs in the 10.8.1.0/24 subnet:
| Service | Internal IP | External URL (Example) | Description |
|---|---|---|---|
| Pi-hole | 10.8.1.3 |
pihole.pi.rahulja.in |
DNS Sinkhole & Ad Blocker |
| Cloudflared | 10.8.1.4 |
cloudflaredns.pi.rahulja.in |
DoH Proxy |
| Immich | 10.8.1.6 |
immich.pi.rahulja.in |
Self-hosted Photo & Video Management |
| Transmission | 10.8.1.23 |
trans.pi.rahulja.in |
Torrent Client |
| Paperless-ngx | 10.8.1.32 |
pngx.pi.rahulja.in |
Document Management System |
| Filebrowser | 10.8.1.34 |
filebrowser.pi.rahulja.in |
Web-based File Manager |
| Homarr | 10.8.1.35 |
homarr.pi.rahulja.in |
Dashboard for your services |
| Tailscale | 10.8.1.48 |
N/A | VPN Mesh Network |
| Web Test | 10.8.1.49 |
webtest.pi.rahulja.in |
Connectivity Test (Whoami) |
| N8n | 10.8.1.53 |
n8n.pi.rahulja.in |
Workflow Automation |
| SearXNG | 10.8.1.54 |
searxng.pi.rahulja.in |
Privacy-respecting Metasearch Engine |
| Paisa | 10.8.1.56 |
paisa.pi.rahulja.in |
Personal Finance Manager |
| Homepage | 10.8.1.57 |
homepage.pi.rahulja.in |
Modern Startpage |
Note: Immich auxiliary services (ML, Redis, DB) occupy IPs 10.8.1.8, 10.8.1.9, and 10.8.1.10 respectively.
The setup relies heavily on environment variables for sensitive data and path configurations.
- Copy
example.envto.env. - Fill in the required fields, especially:
CLOUDFLARE_API_TOKEN(for Caddy SSL)TAILSCALE_AUTH_KEY(for Tailscale connection)- Data paths (defaulting to
/mnt/usb/...)
- Network Name:
wg-easy - Subnet:
10.8.1.0/24 - Gateway:
10.8.1.1(Default Docker bridge gateway)
Most heavy data (media, databases) is mapped to an external USB drive mounted at /mnt/usb. Ensure this mount point exists and has correct permissions, or update the .env file to point to your desired locations.
-
Clone the repository:
git clone <repository-url> cd <repository-directory>
-
Prepare Environment:
cp example.env .env # Edit .env with your specific configuration nano .env -
Start Services:
docker-compose up -d
-
Access Services: Open your browser and navigate to the configured domains (e.g.,
https://homarr.pi.rahulja.in). Ensure your DNS (likely Pi-hole) is correctly pointing these domains to your Nginx/Caddy instance or that you have local host entries if testing offline.
-
Caddy & Tailscale: Caddy is configured with
network_mode: service:tailscale, sharing the Tailscale container's network namespace. This allows Caddy to seamlessly serve content over the Tailscale mesh network and resolve internal IPs on thewg-easybridge. -
Internal DNS: All application containers are configured with
dns: 10.8.1.3, ensuring they use Pi-hole for both internal and external name resolution. -
Immich: Requires a significant amount of RAM for machine learning tasks.
-
Extended Documentation: Detailed architecture diagrams in
.drawioand.svgformats can be found in thedocs/directory.