diff --git a/.gitignore b/.gitignore index 5e0766a..d78d25d 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ netalertx/config/ stirlingpdf/trainingData/ stirlingpdf/configs/ vaultwarden/vw-data/ +heimdall/config/ diff --git a/README.md b/README.md index 8aad5d6..b461c25 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ docker network create --driver bridge proxy - https://it-tools.tech/ 8095 - https://github.com/ChristianLempa/boilerplates/tree/main/docker-compose - cadvisor 8096 - - heimdall + - heimdall 8097 - homer - pihole - https://github.com/claabs/epicgames-freegames-node diff --git a/heimdall/compose.yml b/heimdall/compose.yml new file mode 100644 index 0000000..d5c0c14 --- /dev/null +++ b/heimdall/compose.yml @@ -0,0 +1,25 @@ +# https://heimdall.site/ + +# application dashboard + +name: heimdall + +services: + heimdall: + image: lscr.io/linuxserver/heimdall:2.6.1 + container_name: heimdall + environment: + - PUID=1000 + - PGID=1000 + volumes: + - ./config:/config + ports: + - 8097:80 + #- 443:443 + networks: + - proxy + +networks: + proxy: + external: true + \ No newline at end of file