Skip to content

Commit e5af62e

Browse files
committed
20220810 domoticz - master branch - PR 1 of 3
A Discord thread starting at https://discord.com/channels/638610460567928832/638610461109256194/1005812386688680006 revealed that the Domoticz would not function properly on a clean install. The symptom was either a 400 or a 404 error, depending on the URL. Three issues identified with existing service definition: 1. Wrong image base. Should be "lscr.io/linuxserver/domoticz". 2. Wrong image tag. Should be "latest". 3. `network_mode: bridge`. It has never been clear what `network_mode: bridge` is intended to do. It is the only container with this option. While it may once have been needed, its presence now appears to prevent the container from responding correctly on port 8083. No IOTstack documentation exists for this container. This PR adds some basic documentation in the form of references to the Domoticz home plus associated GitHub and DockerHub pages, along with an invitation for someone who is familiar with the container to expand it further. Signed-off-by: Phill Kelley <[email protected]>
1 parent 19786e8 commit e5af62e

File tree

2 files changed

+18
-3
lines changed

2 files changed

+18
-3
lines changed

.templates/domoticz/service.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
domoticz:
22
container_name: domoticz
3-
image: linuxserver/domoticz:stable
3+
image: lscr.io/linuxserver/domoticz:latest
44
ports:
55
- "8083:8080"
66
- "6144:6144"
77
- "1443:1443"
88
volumes:
99
- ./volumes/domoticz/data:/config
1010
restart: unless-stopped
11-
network_mode: bridge
1211
environment:
1312
- PUID=1000
1413
- PGID=1000
15-
# - TZ=
14+
# - TZ=Etc/UTC
1615
# - WEBROOT=domoticz
1716

docs/Containers/Domoticz.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Domoticz
2+
3+
## References
4+
5+
- [Domoticz home](https://www.domoticz.com)
6+
7+
- [User Guide](https://www.domoticz.com/DomoticzManual.pdf) (pdf)
8+
9+
- [GitHub: domoticz/domoticz](https://github.com/domoticz/domoticz)
10+
- [DockerHub: linuxserver/domoticz](https://hub.docker.com/r/linuxserver/domoticz)
11+
12+
## Invitation
13+
14+
There is no IOTstack documentation for Domoticz.
15+
16+
This is a standing invitation to anyone who is familiar with this container to submit a Pull Request to provide some documentation.

0 commit comments

Comments
 (0)