From 249f3dcbfedf0977091e3e79bc835f9af7a2ffec Mon Sep 17 00:00:00 2001 From: technorabilia Date: Sat, 29 Apr 2023 00:51:56 +0000 Subject: [PATCH] Workflow update --- lsio/pairdrop/docker-compose.yaml | 2 ++ lsio/pairdrop/docker-run.sh | 1 + 2 files changed, 3 insertions(+) diff --git a/lsio/pairdrop/docker-compose.yaml b/lsio/pairdrop/docker-compose.yaml index 157fc2e..128a2c5 100644 --- a/lsio/pairdrop/docker-compose.yaml +++ b/lsio/pairdrop/docker-compose.yaml @@ -22,6 +22,8 @@ services: - WS_FALLBACK=false # optional # Path to a json file containing custom STUN/TURN config (see App Setup notes) - RTC_CONFIG= # optional + # Set to `true` to debug the http server configuration by logging clients IP addresses used by PairDrop to STDOUT. [See here for more info](https://github.com/schlagmichdoch/PairDrop/blob/master/docs/host-your-own.md#debug-mode). Do not use in production! + - DEBUG_MODE=false # optional ports: # http gui - 3000:3000 diff --git a/lsio/pairdrop/docker-run.sh b/lsio/pairdrop/docker-run.sh index 8541cc0..f51b552 100644 --- a/lsio/pairdrop/docker-run.sh +++ b/lsio/pairdrop/docker-run.sh @@ -12,6 +12,7 @@ docker run -d \ -e RATE_LIMIT=false `# optional` `# Set to `true` to limit clients to 100 requests per 5 min` \ -e WS_FALLBACK=false `# optional` `# Set to `true` to enable websocket fallback if the peer to peer WebRTC connection is not available to the client (see App Setup notes).` \ -e RTC_CONFIG= `# optional` `# Path to a json file containing custom STUN/TURN config (see App Setup notes)` \ + -e DEBUG_MODE=false `# optional` `# Set to `true` to debug the http server configuration by logging clients IP addresses used by PairDrop to STDOUT. [See here for more info](https://github.com/schlagmichdoch/PairDrop/blob/master/docs/host-your-own.md#debug-mode). Do not use in production!` \ -p 3000:3000 `# http gui` \ --restart unless-stopped \ ghcr.io/linuxserver/pairdrop