mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
heimdall ready for production
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
# Heimdall
|
||||
|
||||
## Overview
|
||||
|
||||
Heimdall is a lightweight web-based dashboard for organizing and launching your self-hosted applications.
|
||||
|
||||
## Project Details
|
||||
|
||||
- **Project Repository:** [Offical Website](https://heimdall.site/)
|
||||
- **Container Image:** [Docker Hub](https://hub.docker.com/r/linuxserver/heimdall)
|
||||
- **Reverse Proxy Port:** `80`
|
||||
|
||||
## Environment Variable Notes
|
||||
|
||||
FORCE_HTTPS=true - For https
|
||||
|
||||
## Additional Notes / Gotchas
|
||||
|
||||
Still working on the staging config, TODO: where is domain base path set?
|
||||
@@ -0,0 +1,19 @@
|
||||
# Heimdall
|
||||
services:
|
||||
heimdall:
|
||||
image: ${HEIMDALL_IMAGE}
|
||||
restart: ${HEIMDALL_RESTART:-unless-stopped}
|
||||
volumes:
|
||||
- ${VOL_PATH:-./data}/heimdall:/config
|
||||
environment:
|
||||
- PGID=${HEIMDALL_PGID:-1000}
|
||||
- PUID=${HEIMDALL_PUID:-1000}
|
||||
- TZ=${TZ:-America/Vancouver}
|
||||
ports:
|
||||
- 8000:80
|
||||
networks:
|
||||
- proxy
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
@@ -0,0 +1,6 @@
|
||||
HEIMDALL_IMAGE=linuxserver/heimdall:latest
|
||||
HEIMDALL_RESTART=unless-stopped
|
||||
VOL_PATH=/data
|
||||
HEIMDALL_PGID=1000
|
||||
HEIMDALL_PUID=1000
|
||||
TZ=America/Vancouver
|
||||
Reference in New Issue
Block a user