From 81c342e7c61312db6d1db3a4c8b4e78b4cc1ab60 Mon Sep 17 00:00:00 2001 From: drifty Date: Thu, 16 Jan 2025 12:54:13 +0530 Subject: [PATCH] Create compose.yml --- docker-compose-files/pairdrop/compose.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 docker-compose-files/pairdrop/compose.yml diff --git a/docker-compose-files/pairdrop/compose.yml b/docker-compose-files/pairdrop/compose.yml new file mode 100644 index 0000000..17a98a5 --- /dev/null +++ b/docker-compose-files/pairdrop/compose.yml @@ -0,0 +1,15 @@ +services: + pairdrop: + image: 'lscr.io/linuxserver/pairdrop:latest' + container_name: 'pairdrop' + ports: + - '3000:3000' + environment: + - PUID=1000 # UID to run the application as + - PGID=1000 # GID to run the application as + - WS_FALLBACK=true # Set to true to enable websocket fallback if the peer to peer WebRTC connection is not available to the client. + - RATE_LIMIT=false # Set to true to limit clients to 1000 requests per 5 min. + - RTC_CONFIG=false # Set to the path of a file that specifies the STUN/TURN servers. + - DEBUG_MODE=false # Set to true to debug container and peer connections. + - TZ=Asia/Kolkata + restart: unless-stopped