summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Weipert <code@drogueronin.de>2023-11-14 14:00:27 +0100
committerDaniel Weipert <code@drogueronin.de>2023-11-14 14:00:27 +0100
commit6da8f368328ba60f33d51a0132f4905eff024543 (patch)
tree56180fd05214674cacaac7697e24b527e2e10093
parentaa7d1051c8c5f93ed8c8fea432f82af4098321fe (diff)
[services] bore - local tunnel
-rw-r--r--Applications/Services/bore/.env.example3
-rw-r--r--Applications/Services/bore/docker-compose.yml10
2 files changed, 13 insertions, 0 deletions
diff --git a/Applications/Services/bore/.env.example b/Applications/Services/bore/.env.example
new file mode 100644
index 0000000..2bc29b7
--- /dev/null
+++ b/Applications/Services/bore/.env.example
@@ -0,0 +1,3 @@
+MIN_PORT=8080
+MAX_PORT=8090
+SECRET=example
diff --git a/Applications/Services/bore/docker-compose.yml b/Applications/Services/bore/docker-compose.yml
new file mode 100644
index 0000000..d693478
--- /dev/null
+++ b/Applications/Services/bore/docker-compose.yml
@@ -0,0 +1,10 @@
+version: "3"
+
+services:
+ bore:
+ image: ekzhang/bore
+ restart: unless-stopped
+ ports:
+ - "7835:7835"
+ - "${MIN_PORT}-${MAX_PORT}:${MIN_PORT}-${MAX_PORT}"
+ command: server --min-port=${MIN_PORT} --max-port=${MAX_PORT} --secret="${SECRET}"