From 6da8f368328ba60f33d51a0132f4905eff024543 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Tue, 14 Nov 2023 14:00:27 +0100 Subject: [services] bore - local tunnel --- Applications/Services/bore/.env.example | 3 +++ Applications/Services/bore/docker-compose.yml | 10 ++++++++++ 2 files changed, 13 insertions(+) create mode 100644 Applications/Services/bore/.env.example create mode 100644 Applications/Services/bore/docker-compose.yml (limited to 'Applications') 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}" -- cgit v1.2.3