Skip to content
This repository has been archived by the owner on Mar 27, 2021. It is now read-only.

Docker containers with official Domoticz beta builds

License

Notifications You must be signed in to change notification settings

stas-demydiuk/domoticz-docker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Domoticz

#f03c15 This image is not maintained anymore and has been migrated into official Domoticz docker image.

Domoticz - https://www.domoticz.com/

Docker containers with official Domoticz beta builds

How to use

Pull image

docker pull demydiuk/domoticz:$VERSION

Run container

docker run -d \
    -p 8080:8080 \
    -v <path for config files>:/config \
    -v /etc/localtime:/etc/localtime:ro \
    --device=<device_id> \
    --name=<container name> \ 
    demydiuk/domoticz:$VERSION

Please replace all user variables in the above command defined by <> with the correct values (you can have several USB devices attached, just add other --device=<device_id>).

Access Domoticz

https://<host ip>:8080

8080 can be another port (you change -p 8080:8080 to -p 8081:8080 to have 8081 out of the container for example).

Usage with docker-compose

version: '3.3'

services:
  domoticz:
    image: demydiuk/domoticz:latest
    container_name: domoticz
    # Pass devices to container
    # devices:
    #   - "dev/serial/by-id/usb-0658_0200-if00:/dev/ttyACM0"

    volumes:
      - "/etc/localtime:/etc/localtime:ro"
    # Additional volumes that might be useful:
    #  - "./config:/config"
    #  - "./plugins:/opt/domoticz/plugins"

    # You can add or overwrite default Domoticz args (-www 8080)
    # command: -www 80

    # You can activate SSL support using -sslwww <PORT> param
    # command: -www 8080 -sslwww 8443

    # Host mode can be useful in case you have a hardware which requires host network access
    # network_mode: "host"

    restart: unless-stopped

About

Docker containers with official Domoticz beta builds

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages