OpenHab - Home automation platform
Summary
OpenHab is a home automation platform integrating all your different smart home services. The documentation can be found at openhab.org.
Installation via docker-compose behind traefik proxy
openhab:
image: openhab/openhab
labels:
- "traefik.enable=true"
- "traefik.http.routers.openhab.rule=Host(`openhab.domain.com`)"
- "traefik.http.routers.openhab.entrypoints=websecure"
- "traefik.http.routers.openhab.tls=true"
- "traefik.http.services.openhab.loadBalancer.server.port=8080"
- "traefik.docker.network=traefik"
networks:
- traefik
restart: always
No Comments