forked from gcgarner/IOTstack
-
Notifications
You must be signed in to change notification settings - Fork 308
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
2024-04-23 Domoticz - master branch - PR 1 of 2
Updates service definition: - Change image to `domoticz/domoticz:stable` - Adopt IOTstack convention for `TZ=` - Support [documented](https://hub.docker.com/r/domoticz/domoticz) environment variables - Remove mapping for port 6144 (no longer in use) - Change internal TLS port to 443 - Remove redundant `data` subdirectory from left hand side of volume mapping - Adopt new image's convention for right hand side of volume mapping Adds some documentation centred on these changes. Signed-off-by: Phill Kelley <[email protected]>
- Loading branch information
1 parent
7a05f32
commit aa41727
Showing
2 changed files
with
82 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,15 @@ | ||
domoticz: | ||
container_name: domoticz | ||
image: lscr.io/linuxserver/domoticz:latest | ||
image: domoticz/domoticz:stable | ||
restart: unless-stopped | ||
environment: | ||
- TZ=${TZ:-Etc/UTC} | ||
# - LOG_PATH=/opt/domoticz/userdata/domoticz.log | ||
# - EXTRA_CMD_ARG= | ||
ports: | ||
- "8083:8080" | ||
- "6144:6144" | ||
- "1443:1443" | ||
- "1443:443" | ||
volumes: | ||
- ./volumes/domoticz/data:/config | ||
restart: unless-stopped | ||
environment: | ||
- PUID=1000 | ||
- PGID=1000 | ||
# - TZ=Etc/UTC | ||
# - WEBROOT=domoticz | ||
|
||
- ./volumes/domoticz:/opt/domoticz/userdata | ||
x-devices: | ||
- "/dev/serial/by-id/usb-0658_0200-if00-port0:/dev/ttyACM0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters