Skip to content

Commit 50962f2

Browse files
committed
Add DashMachine
1 parent 5ffebf1 commit 50962f2

File tree

4 files changed

+29
-0
lines changed

4 files changed

+29
-0
lines changed

.templates/dashmachine/service.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
dashmachine:
2+
image: rmountjoy/dashmachine:latest
3+
container_name: dashmachine
4+
volumes:
5+
- ./volumes/dashmachine/user_data:/dashmachine/dashmachine/user_data
6+
ports:
7+
- 5000:5000
8+
restart: unless-stopped

docs/Containers/DashMachine.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# DashMachine
2+
3+
## References
4+
* [Homepage](https://github.com/rmountjoy92/DashMachine)
5+
* [Docker](https://hub.docker.com/r/rmountjoy/dashmachine/)
6+
7+
## Web Interface
8+
The web UI can be found on `"your_ip":5000`.
9+
10+
The default credentials are:
11+
* User: `admin`
12+
* Password: `admin`
13+
14+
## About *DashMachine*
15+
16+
DashMachine is a web application bookmark dashboard. It allows you to have all your application bookmarks available in one place, grouped and organized how you want to see them.
17+
18+
Within the context of IOTstack, DashMachine can help you organize your deployed services.

docs/Home.md

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

4546
***

menu.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ declare -A cont_array=(
5353
[dozzle]="Dozzle"
5454
[wireguard]="Wireguard"
5555
[heimdall]="Heimdall Application Dashboard"
56+
[dashmachine]="DashMachine"
5657
# add yours here
5758
)
5859

@@ -92,6 +93,7 @@ declare -a armhf_keys=(
9293
"dozzle"
9394
"wireguard"
9495
"heimdall"
96+
"dashmachine"
9597
# add yours here
9698
)
9799
sys_arch=$(uname -m)

0 commit comments

Comments
 (0)