2025-03-16 21:52:44 +00:00
# Home Assistant Docker Setup with Traefik
2025-03-16 21:16:44 +00:00
2025-03-16 21:52:44 +00:00
This guide provides instructions for deploying Home Assistant using Docker and Traefik as a reverse proxy. The setup includes securing the Home Assistant instance with HTTPS and configuring a trusted proxy.
2025-03-16 21:16:44 +00:00
## Prerequisites
2025-03-16 21:52:44 +00:00
- Docker and Docker Compose installed on your system
- Traefik configured as your reverse proxy
- A domain name pointing to your Home Assistant instance
2025-03-16 21:16:44 +00:00
2025-03-16 21:52:44 +00:00
## Environment Variables
Before deploying the container, create a `.env` file from the provided `.env-example` file and adjust the values as needed.
2025-03-16 21:16:44 +00:00
2025-03-16 21:52:44 +00:00
```sh
cp .env-example .env
nano .env
```
### `.env-example` file
```ini
# Home Assistant Version (Default: latest)
HOMEASSISTANT_VERSION=latest
# Home Assistant Domain
HOMEASSISTANT_DOMAIN=homeassistant.example.com
```
## Starting the Container
Once the `.env` file is configured, start the Home Assistant container using:
```sh
docker-compose up -d
```
## Configuring the Reverse Proxy
To enable proper proxy support in Home Assistant, update `data/config/configuration.yaml` with the following settings:
2025-03-16 21:16:44 +00:00
2025-03-16 21:52:44 +00:00
### Finding the Local Subnet IP
To determine the Docker subnet used by Home Assistant, run:
```sh
docker inspect homeassistant | grep Gateway
2025-03-16 21:16:44 +00:00
```
2025-03-16 21:52:44 +00:00
### `configuration.yaml`
```yaml
http:
ip_ban_enabled: true
login_attempts_threshold: 5
use_x_forwarded_for: true
trusted_proxies:
- 10.0.0.0/24 # Local Subnet
- 172.18.0.0/24 # Your Docker Subnet
2025-03-16 21:16:44 +00:00
```
2025-03-16 21:52:44 +00:00
## Accessing Home Assistant
Once everything is set up, restart Home Assistant and it should be accessible via the configured domain:
```
https://homeassistant.example.com
```
2025-03-16 21:16:44 +00:00
2025-03-16 21:52:44 +00:00
If there are any issues, check the container logs with:
```sh
docker logs -f homeassistant
```