Compare commits
4 Commits
3d62803e05
...
9c767b6e0c
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9c767b6e0c | ||
|
|
b66436fa95 | ||
|
|
e36c6a7f1c | ||
|
|
43bacbcb48 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -3,4 +3,5 @@ secrets/
|
||||
tmp/
|
||||
stashapp/**/config.yml.*
|
||||
stashapp/**/icon.png
|
||||
requestrr/**/notifications.json
|
||||
requestrr/**/notifications.json
|
||||
logs/
|
||||
@@ -38,6 +38,12 @@ services:
|
||||
- postgres_pass
|
||||
- redis_pass
|
||||
- users_database
|
||||
labels:
|
||||
- homepage.group=Utility
|
||||
- homepage.name=Authelia
|
||||
- homepage.icon=authelia
|
||||
- homepage.href=https://auth.tremendousturtle.tools/
|
||||
- homepage.description=Authentication
|
||||
|
||||
database:
|
||||
image: postgres:15
|
||||
|
||||
@@ -25,3 +25,12 @@ services:
|
||||
- "5000:5000" # VS Code schema validation allowed
|
||||
environment:
|
||||
LIBVA_DRIVER_NAME: "radeonsi" # FRIGATE_RTSP_PASSWORD: "69$nC*6$jADbc!"
|
||||
labels:
|
||||
- homepage.group=Utility
|
||||
- homepage.name=Frigate
|
||||
- homepage.icon=frigate
|
||||
- homepage.href=https://frigate.tremendousturtle.tools/
|
||||
- homepage.description=Camera Surveillance
|
||||
- homepage.widget.type=frigate
|
||||
- homepage.widget.url=http://192.168.1.234:5000
|
||||
- homepage.widget.enableRecentEvents=true
|
||||
|
||||
18
homepage/config/bookmarks.yaml
Normal file
18
homepage/config/bookmarks.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/configs/bookmarks
|
||||
|
||||
- Developer:
|
||||
- Github:
|
||||
- abbr: GH
|
||||
href: https://github.com/
|
||||
|
||||
- Social:
|
||||
- Reddit:
|
||||
- abbr: RE
|
||||
href: https://reddit.com/
|
||||
|
||||
- Entertainment:
|
||||
- YouTube:
|
||||
- abbr: YT
|
||||
href: https://youtube.com/
|
||||
0
homepage/config/custom.css
Normal file
0
homepage/config/custom.css
Normal file
0
homepage/config/custom.js
Normal file
0
homepage/config/custom.js
Normal file
10
homepage/config/docker.yaml
Normal file
10
homepage/config/docker.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/configs/docker/
|
||||
|
||||
my-docker:
|
||||
host: homepage-dockerproxy-1
|
||||
port: 2375
|
||||
|
||||
# my-docker:
|
||||
# socket: /var/run/docker.sock
|
||||
2
homepage/config/kubernetes.yaml
Normal file
2
homepage/config/kubernetes.yaml
Normal file
@@ -0,0 +1,2 @@
|
||||
---
|
||||
# sample kubernetes config
|
||||
18
homepage/config/services.yaml
Normal file
18
homepage/config/services.yaml
Normal file
@@ -0,0 +1,18 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/configs/services/
|
||||
|
||||
- My First Group:
|
||||
- My First Service:
|
||||
href: http://localhost/
|
||||
description: Homepage is awesome
|
||||
|
||||
- My Second Group:
|
||||
- My Second Service:
|
||||
href: http://localhost/
|
||||
description: Homepage is the best
|
||||
|
||||
- My Third Group:
|
||||
- My Third Service:
|
||||
href: http://localhost/
|
||||
description: Homepage is 😎
|
||||
7
homepage/config/settings.yaml
Normal file
7
homepage/config/settings.yaml
Normal file
@@ -0,0 +1,7 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/configs/settings/
|
||||
|
||||
providers:
|
||||
openweathermap: openweathermapapikey
|
||||
weatherapi: weatherapiapikey
|
||||
12
homepage/config/widgets.yaml
Normal file
12
homepage/config/widgets.yaml
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
# For configuration options and examples, please see:
|
||||
# https://gethomepage.dev/configs/info-widgets/
|
||||
|
||||
- resources:
|
||||
cpu: true
|
||||
memory: true
|
||||
disk: /
|
||||
|
||||
- search:
|
||||
provider: duckduckgo
|
||||
target: _blank
|
||||
@@ -1,12 +1,26 @@
|
||||
name: homepage
|
||||
services:
|
||||
app:
|
||||
image: ghcr.io/gethomepage/homepage:latest
|
||||
depends_on:
|
||||
- dockerproxy
|
||||
environment:
|
||||
DOCKER_TEMPLATE_CREATED: true
|
||||
image: ghcr.io/gethomepage/homepage:latest
|
||||
ports:
|
||||
- "3001:3000"
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ./config:/app/config # Make sure your local config directory exists
|
||||
- /var/run/docker.sock:/var/run/docker.sock # (optional) For docker integrations
|
||||
|
||||
dockerproxy:
|
||||
image: ghcr.io/tecnativa/docker-socket-proxy:latest
|
||||
environment:
|
||||
- CONTAINERS=1 # Allow access to viewing containers
|
||||
- SERVICES=1 # Allow access to viewing services (necessary when using Docker Swarm)
|
||||
- TASKS=1 # Allow access to viewing tasks (necessary when using Docker Swarm)
|
||||
- POST=0 # Disallow any POST operations (effectively read-only)
|
||||
ports:
|
||||
- "127.0.0.1:2375:2375"
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock:ro # Mounted as read-only
|
||||
Reference in New Issue
Block a user