Skip to content

Commit 0a2219e

Browse files
committed
Add Homer
1 parent 50962f2 commit 0a2219e

File tree

5 files changed

+33
-0
lines changed

5 files changed

+33
-0
lines changed

.templates/homer/homer.env

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
UID=1000
2+
GID=1000

.templates/homer/service.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
homer:
2+
image: b4bz/homer:latest
3+
container_name: homer
4+
env_file:
5+
- ./services/homer/homer.env
6+
volumes:
7+
- ./volumes/homer/assets:/www/assets
8+
ports:
9+
- 8881:8080
10+
restart: unless-stopped

docs/Containers/Homer.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Homer
2+
3+
## References
4+
* [Homepage](https://github.com/bastienwirtz/homer)
5+
* [Docker](https://hub.docker.com/r/b4bz/homer)
6+
7+
## Web Interface
8+
The web UI can be found on `"your_ip":8881`
9+
10+
## About *Homer*
11+
12+
From the [Homer README](https://github.com/bastienwirtz/homer/blob/main/README.md):
13+
14+
> A dead simple static HOMepage for your servER to keep your services on hand, from a simple `yaml` configuration file.
15+
16+
You can find an example of the `config.yml` file [here](https://github.com/bastienwirtz/homer/blob/main/docs/configuration.md).
17+
18+
Within the context of IOTstack, Homer can help you organize your deployed services.

docs/Home.md

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

4647
***

menu.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ declare -A cont_array=(
5454
[wireguard]="Wireguard"
5555
[heimdall]="Heimdall Application Dashboard"
5656
[dashmachine]="DashMachine"
57+
[homer]="Homer"
5758
# add yours here
5859
)
5960

@@ -94,6 +95,7 @@ declare -a armhf_keys=(
9495
"wireguard"
9596
"heimdall"
9697
"dashmachine"
98+
"homer"
9799
# add yours here
98100
)
99101
sys_arch=$(uname -m)

0 commit comments

Comments
 (0)