Skip to content

Commit 4f7421a

Browse files
committed
20220810 domoticz - old-menu branch - PR 2 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. A related PR adds basic documentation. This PR adds a stub pointing to master branch. Signed-off-by: Phill Kelley <[email protected]>
1 parent 255500d commit 4f7421a

File tree

3 files changed

+14
-10
lines changed

3 files changed

+14
-10
lines changed

.templates/domoticz/domoticz.env

Lines changed: 0 additions & 4 deletions
This file was deleted.

.templates/domoticz/service.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
domoticz:
22
container_name: domoticz
3-
image: linuxserver/domoticz:stable
3+
image: lscr.io/linuxserver/domoticz:latest
44
ports:
5-
- "8080:8080"
5+
- "8083:8080"
66
- "6144:6144"
77
- "1443:1443"
88
volumes:
99
- ./volumes/domoticz/data:/config
10-
env_file:
11-
- ./services/domoticz/domoticz.env
1210
restart: unless-stopped
13-
network_mode: bridge
14-
11+
environment:
12+
- PUID=1000
13+
- PGID=1000
14+
# - TZ=Etc/UTC
15+
# - WEBROOT=domoticz
16+

docs/Containers/Domoticz.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Domoticz
2+
3+
Please refer to the [documentation on the master branch](https://github.com/SensorsIot/IOTstack/blob/master/docs/Containers/Domoticz.md).
4+
5+
> There is not much there…
6+

0 commit comments

Comments
 (0)