From af750f7532768fdf5053edb57638cfaff2bd051c Mon Sep 17 00:00:00 2001 From: Cris Mathew Date: Thu, 29 Feb 2024 00:35:55 +0300 Subject: [PATCH] Add heimdall/compose.yml --- heimdall/compose.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 heimdall/compose.yml diff --git a/heimdall/compose.yml b/heimdall/compose.yml new file mode 100644 index 0000000..a926a9e --- /dev/null +++ b/heimdall/compose.yml @@ -0,0 +1,24 @@ +version: "3.9" +services: + heimdall: + image: lscr.io/linuxserver/heimdall:latest + container_name: heimdall + environment: + - PUID=1000 + - PGID=1000 + - TZ=Asia/Riyadh + volumes: + - ./config:/config + networks: + - proxy + restart: unless-stopped + labels: + - "traefik.enable=true" + - "traefik.http.routers.heimdall-secure.entrypoints=https" + - "traefik.http.routers.heimdall-secure.rule=Host(`dash.example.com`)" + - "traefik.http.routers.heimdall-secure.tls=true" + - "traefik.http.routers.heimdall-secure.service=heimdall" + - "traefik.http.services.heimdall.loadbalancer.server.port=80" +networks: + proxy: + external: true \ No newline at end of file