You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
771 B
Markdown

3 years ago
Heimdall Application Dashboard
Official Site: https://heimdall.site/
### Minimum File Structure
3 years ago
```
/home/
└── ~/
└── docker/
└── heimdall/
├── docker-compose.yml
```
3 years ago
### 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
3 years ago
}
```
3 years ago
### 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
3 years ago
```