Skip to content

Commit 5ffebf1

Browse files
committed
Add Heimdall Application Dashboard
1 parent 416091c commit 5ffebf1

File tree

5 files changed

+33
-0
lines changed

5 files changed

+33
-0
lines changed

.templates/heimdall/heimdall.env

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
PUID=1000
2+
PGID=1000
3+
TZ=Europe/Paris

.templates/heimdall/service.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
heimdall:
2+
image: ghcr.io/linuxserver/heimdall
3+
container_name: heimdall
4+
env_file:
5+
- ./services/heimdall/heimdall.env
6+
volumes:
7+
- ./volumes/heimdall/config:/config
8+
ports:
9+
- 8880:80
10+
- 8883:443
11+
restart: unless-stopped

docs/Containers/Heimdall.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Heimdall
2+
3+
## References
4+
* [Homepage](https://heimdall.site/)
5+
* [Docker](https://hub.docker.com/r/linuxserver/heimdall/)
6+
7+
## Web Interface
8+
The web UI can be found on `"your_ip":8880`
9+
10+
## About *Heimdall*
11+
12+
From the [Heimdall website](https://heimdall.site/):
13+
14+
> Heimdall Application Dashboard is a dashboard for all your web applications. It doesn't need to be limited to applications though, you can add links to anything you like. There are no iframes here, no apps within apps, no abstraction of APIs. if you think something should work a certain way, it probably does.
15+
16+
Within the context of IOTstack, the Heimdall Application Dashboard can help you organize your deployed services.

docs/Home.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ The README is moving to the Wiki, It's easier to add content and example to the
3939
* [Blynk Server](https://sensorsiot.github.io/IOTstack/Containers/Blynk_server)
4040
* [diyHue](https://sensorsiot.github.io/IOTstack/Containers/diyHue)
4141
* [Python](https://sensorsiot.github.io/IOTstack/Containers/Python)
42+
* [Heimdall](https://sensorsiot.github.io/IOTstack/Containers/Heimdall)
4243
* [Custom containers](https://sensorsiot.github.io/IOTstack/Containers/Custom)
4344

4445
***

menu.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ declare -A cont_array=(
5252
[domoticz]="Domoticz"
5353
[dozzle]="Dozzle"
5454
[wireguard]="Wireguard"
55+
[heimdall]="Heimdall Application Dashboard"
5556
# add yours here
5657
)
5758

@@ -90,6 +91,7 @@ declare -a armhf_keys=(
9091
"domoticz"
9192
"dozzle"
9293
"wireguard"
94+
"heimdall"
9395
# add yours here
9496
)
9597
sys_arch=$(uname -m)

0 commit comments

Comments
 (0)