We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdc9bed commit 4da1813Copy full SHA for 4da1813
2 files changed
hub/huntarr/.env
@@ -0,0 +1,4 @@
1
+PROJECT=huntarr
2
+DOMAIN=stack.localhost
3
+
4
+TZ=UTC
hub/huntarr/compose.yaml
@@ -0,0 +1,17 @@
+# SPDX-License-Identifier: MIT
+# This is a https://stack.lol docker compose file.
+services:
5
+ huntarr:
6
+ image: huntarr/huntarr:${HUNTARR_VERSION:-7.3.6}
7
+ restart: on-failure:2
8
+ env_file: .env
9
+ volumes:
10
+ - config:/config
11
+ labels:
12
+ dash.url: https://$PROJECT.$DOMAIN
13
+ traefik.http.routers.huntarr.rule: Host(`$PROJECT.$DOMAIN`)
14
+ traefik.http.services.huntarr.loadbalancer.server.port: 9705
15
16
+volumes:
17
+ config:
0 commit comments