Skip to content

Commit 27e1122

Browse files
committed
2024-02-14 Heimdall port conflict - master branch - PR 1 of 2
Issue SensorsIot#751 reports external port 8880 is used for both Heimdall and Zigbee2MQTT_Assistant. This PR changes the port to 8882: ``` $ git -C ~/IOTstack/.templates grep 8880 heimdall/service.yml: - 8880:80 zigbee2mqtt_assistant/service.yml: - "8880:80" zigbee2mqtt_assistant/service.yml: - VIRTUAL_PORT=8880 $ git -C ~/IOTstack/.templates grep 8882 $ ``` Using port 8882 for HTTP also conveniently aligns with the second Heimdall port-mapping of `8883:443`. Also takes the opportunity to adopt up-to-date syntax for `TZ=`. Fixes SensorsIot#751 Signed-off-by: Phill Kelley <[email protected]>
1 parent 40f1f47 commit 27e1122

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

.templates/heimdall/service.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ heimdall:
44
environment:
55
- PUID=1000
66
- PGID=1000
7-
- TZ=Etc/UTC
7+
- TZ=${TZ:-Etc/UTC}
88
volumes:
99
- ./volumes/heimdall/config:/config
1010
ports:
11-
- 8880:80
11+
- 8882:80
1212
- 8883:443
1313
restart: unless-stopped
1414

docs/Containers/Heimdall.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
# Heimdall
22

33
## References
4+
45
* [Homepage](https://heimdall.site/)
56
* [Docker](https://hub.docker.com/r/linuxserver/heimdall/)
67

78
## Web Interface
8-
The web UI can be found on `"your_ip":8880`
9+
10+
The web UI can be found on:
11+
12+
* HTTP: `"your_ip":8882`
13+
* HTTPS: `"your_ip":8883`
914

1015
## About *Heimdall*
1116

0 commit comments

Comments
 (0)