two dashboards for testing
This commit is contained in:
parent
bfa13904ab
commit
b3336b3442
2 changed files with 1884 additions and 0 deletions
1847
compose/services/homarr/configs/default.json
Normal file
1847
compose/services/homarr/configs/default.json
Normal file
File diff suppressed because it is too large
Load diff
37
compose/services/homepage/compose.yaml
Normal file
37
compose/services/homepage/compose.yaml
Normal file
|
|
@ -0,0 +1,37 @@
|
||||||
|
# Homepage - Modern dashboard with service integrations
|
||||||
|
# Docs: https://gethomepage.dev/
|
||||||
|
|
||||||
|
services:
|
||||||
|
homepage:
|
||||||
|
container_name: homepage
|
||||||
|
image: ghcr.io/gethomepage/homepage:latest
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
|
env_file:
|
||||||
|
- .env
|
||||||
|
|
||||||
|
volumes:
|
||||||
|
- ./config:/app/config
|
||||||
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
||||||
|
- /mnt/media:/mnt/media:ro
|
||||||
|
|
||||||
|
networks:
|
||||||
|
- homelab
|
||||||
|
|
||||||
|
labels:
|
||||||
|
# Traefik
|
||||||
|
traefik.enable: true
|
||||||
|
traefik.docker.network: homelab
|
||||||
|
|
||||||
|
# Web UI
|
||||||
|
traefik.http.routers.homepage.rule: Host(`homepage.fig.systems`)
|
||||||
|
traefik.http.routers.homepage.entrypoints: websecure
|
||||||
|
traefik.http.routers.homepage.tls.certresolver: letsencrypt
|
||||||
|
traefik.http.services.homepage.loadbalancer.server.port: 3000
|
||||||
|
|
||||||
|
# Optional: SSO Protection (disabled for easy dashboard access)
|
||||||
|
# traefik.http.routers.homepage.middlewares: tinyauth
|
||||||
|
|
||||||
|
networks:
|
||||||
|
homelab:
|
||||||
|
external: true
|
||||||
Loading…
Reference in a new issue