Title logo
linuxserver/domoticz.

A Domoticz container, brought to you by LinuxServer.io.

25,492,965 112 arm64 amd64 Deprecated

Build Information

General build information for this image

Docker Hub linuxserver/domoticz
Build Time 29 Nov 2023 20:00:41
Category Automation
Synchronised Yes
Stable Yes
Deprecated Yes

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
stable 2022.1.20221013-stable 13 Oct 2022 at 16:03:37
latest 2023.2.20231129 29 Nov 2023 at 20:00:41

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  domoticz:
    image: linuxserver/domoticz:2023.2.20231129
    container_name: domoticz
    restart: unless-stopped
    environment:
      - WEBROOT=domoticz # Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying.
      - TZ=Europe/London # Specify a timezone to use EG Europe/London.
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
    volumes:
      - /host/path/to/config:/config # Where Domoticz stores config files and data.
    ports:
      - 8080:8080/tcp # WebUI
      - 6144:6144/tcp # Domoticz communication port.
      - 1443:1443/tcp # Domoticz communication port.
    devices:
      - /path/to/usb:/path/to/usb # (Optional) For passing through USB devices.

CLI

docker create \
  --name=domoticz \
  -e WEBROOT=domoticz `# Sets webroot to domoticz for usage with subfolder reverse proxy. Not needed unless reverse proxying.` \
  -e TZ=Europe/London `# Specify a timezone to use EG Europe/London.` \
  -e PUID=1000 `# for UserID` \
  -e PGID=1000 `# for GroupID` \
  -v /host/path/to/config:/config `# Where Domoticz stores config files and data.` \
  -p 8080:8080/tcp `# WebUI` \
  -p 6144:6144/tcp `# Domoticz communication port.` \
  -p 1443:1443/tcp `# Domoticz communication port.` \
  --device /path/to/usb:/path/to/usb `# (Optional) For passing through USB devices.` \
  --restart unless-stopped \
  linuxserver/domoticz:2023.2.20231129