diff options
Diffstat (limited to 'Applications/Services/bore/docker-compose.yml')
-rw-r--r-- | Applications/Services/bore/docker-compose.yml | 10 |
1 files changed, 10 insertions, 0 deletions
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}" |