From f8569f202a7b60e5e9acada21f231d4b44037949 Mon Sep 17 00:00:00 2001 From: technorabilia Date: Sat, 4 Mar 2023 00:57:27 +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 6f626a4..157fc2e 100644 --- a/lsio/pairdrop/docker-compose.yaml +++ b/lsio/pairdrop/docker-compose.yaml @@ -20,6 +20,8 @@ services: - RATE_LIMIT=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). - WS_FALLBACK=false # optional + # Path to a json file containing custom STUN/TURN config (see App Setup notes) + - RTC_CONFIG= # optional ports: # http gui - 3000:3000 diff --git a/lsio/pairdrop/docker-run.sh b/lsio/pairdrop/docker-run.sh index 993dcd3..84ee736 100644 --- a/lsio/pairdrop/docker-run.sh +++ b/lsio/pairdrop/docker-run.sh @@ -11,6 +11,7 @@ docker run -d \ -e TZ=${TZ:-Europe/Amsterdam} `# specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List).` \ -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)` \ -p 3000:3000 `# http gui` \ --restart unless-stopped \ ghcr.io/linuxserver/pairdrop