Lightarr is used to automate smart lighting with Plex webhooks. Built with Go, supports Wiz via UDP.
980
Home automation tool that connects Plex webhooks to Wiz smart bulbs. Automate your lighting based on media playback events.
docker run -d \
--name lightarr \
-e X_PLEX_TOKEN=your_token_here \
-e WIZ_SUBNET=192.168.1.0/24 \
-v /path/to/data:/data \
-p 10100:10100 \
aradd7/lightarr:latest
Or use docker-compose:
services:
lightarr:
image: aradd7/lightarr:latest
container_name: lightarr
environment:
- PORT=10100
- X_PLEX_TOKEN=${X_PLEX_TOKEN}
- WIZ_SUBNET=192.168.1.0/24
- X_PLEX_CLIENT_IDENTIFIER=lightarr-app
- DB_PATH=/data/lightarr.db
volumes:
- ./data:/data
ports:
- "10100:10100"
restart: unless-stopped
| Variable | Default | Required | Description |
|---|---|---|---|
X_PLEX_TOKEN | - | Yes | Plex authentication token (Get it here) |
PORT | 10100 | No | HTTP server port |
WIZ_SUBNET | 192.168.1.0/24 | No | Your network subnet to scan for Wiz bulbs |
X_PLEX_CLIENT_IDENTIFIER | lightarr-app | No | Plex client identifier |
DB_PATH | /data/lightarr.db | No | SQLite database path |
| Container Path | Description |
|---|---|
/data | Database and configuration storage |
| Port | Description |
|---|---|
10100 | Web UI and webhook endpoint |
http://<your-ip>:10100/plexhookhttp://<your-ip>:10100When you press play on your Living Room TV:
All automated based on your custom rules!
Content type
Image
Digest
sha256:5d0d698df…
Size
13.1 MB
Last updated
7 months ago
docker pull aradd7/lightarr