mirror of
https://github.com/nickyeoman/docker-compose-cookbooks.git
synced 2026-09-04 02:46:23 +00:00
refactored all to dev
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,14 @@
|
||||
services:
|
||||
heimdall:
|
||||
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}
|
||||
ports:
|
||||
- 8000:80
|
||||
networks:
|
||||
- proxy
|
||||
@@ -0,0 +1,8 @@
|
||||
# Heimdall Variables
|
||||
|
||||
# Inclue cookbook.env
|
||||
|
||||
# Heimdall
|
||||
HEIMDALL_IMAGE=linuxserver/heimdall:latest
|
||||
HEIMDALL_PGID=1000
|
||||
HEIMDALL_PUID=1000
|
||||
Reference in New Issue
Block a user