mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-03 18:36:22 +00:00
Updated Heimdall
This commit is contained in:
+13
-9
@@ -1,15 +1,19 @@
|
||||
# heimdall
|
||||
|
||||
Last Updated: Thu August 08, 2024 12:50:47 PDT
|
||||
# Heimdall
|
||||
|
||||
## Overview
|
||||
|
||||
DockerHub: https://hub.docker.com/r/linuxserver/heimdall
|
||||
Offical Website: https://heimdall.site/
|
||||
Proxy Port: 80
|
||||
Heimdall is a lightweight web-based dashboard for organizing and launching your self-hosted applications.
|
||||
|
||||
## notes
|
||||
## Project Details
|
||||
|
||||
For https include: FORCE_HTTPS=true
|
||||
- **Project Repository:** [Offical Website](https://heimdall.site/)
|
||||
- **Container Image:** [Docker Hub](https://hub.docker.com/r/linuxserver/heimdall)
|
||||
- **Reverse Proxy Port:** `80`
|
||||
|
||||
TODO: where is domain base path set?
|
||||
## Environment Variable Notes
|
||||
|
||||
FORCE_HTTPS=true - For https
|
||||
|
||||
## Additional Notes / Gotchas
|
||||
|
||||
Still working on the staging config, TODO: where is domain base path set?
|
||||
|
||||
@@ -1,10 +1,14 @@
|
||||
services:
|
||||
heimdall:
|
||||
image: ${HEIMDALL_IMAGE:-linuxserver/heimdall:latest}
|
||||
image: ${HEIMDALL_IMAGE}
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- ${VOL_PATH:-./data}/heimdall:/config
|
||||
environment:
|
||||
- PGID=${HEIMDALL_PGID:-1000}
|
||||
- PUID=${HEIMDALL_PUID:-1000}
|
||||
- TZ=${TZ:-America/Vancouver}
|
||||
volumes:
|
||||
- ${VOL_PATH:-./data}/heimdall:/config
|
||||
ports:
|
||||
- 8000:80
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
+4
-4
@@ -1,8 +1,8 @@
|
||||
TZ=America/Vancouver
|
||||
COOKBOOK=/git/docker-compose-cookbooks #HELP: cookbooks
|
||||
# Heimdall Variables
|
||||
|
||||
# heimdall
|
||||
# Inclue cookbook.env
|
||||
|
||||
# Heimdall
|
||||
HEIMDALL_IMAGE=linuxserver/heimdall:latest
|
||||
HEIMDALL_PGID=1000
|
||||
HEIMDALL_PUID=1000
|
||||
VOL_PATH=/var/lib/docker/volumes #HELP: volpath
|
||||
|
||||
Reference in New Issue
Block a user