From 8b2e6a639c193a5ee8ac7ca1571e1c025ee47d31 Mon Sep 17 00:00:00 2001 From: Tai Date: Sat, 2 Jan 2021 12:36:28 -0800 Subject: [PATCH] Added Heimdall --- heimdall/README.md | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 heimdall/README.md diff --git a/heimdall/README.md b/heimdall/README.md new file mode 100644 index 0000000..2340c56 --- /dev/null +++ b/heimdall/README.md @@ -0,0 +1,34 @@ +Heimdall Application Dashboard + +Official Site: https://heimdall.site/ + +### docker-compose.yml +``` +version: "2.1" +services: + heimdall: + image: linuxserver/heimdall + container_name: heimdall + hostname: heimdall + environment: + - PUID=1000 + - PGID=1000 + - TZ=America/Los_Angeles + volumes: + - ./config:/config + restart: unless-stopped + +networks: + default: + external: + name: caddy_net +``` + +### Add to Caddyfile (from ~/docker/caddy) +Remember to `docker exec -w /etc/caddy caddy caddy reload` after editing your Caddyfile. + +``` +heimdall.example.com { + reverse_proxy heimdall:80 +} +``` \ No newline at end of file