diff options
-rw-r--r-- | Applications/Services/bore/.env.example | 3 | ||||
-rw-r--r-- | Applications/Services/bore/docker-compose.yml | 10 |
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}" |