Title logo
linuxserver/pairdrop.

75,682 14 amd64 arm64

Build Information

General build information for this image

Docker Hub linuxserver/pairdrop
Build Time 18 Apr 2024 15:34:00
Base Image lsiobase/alpine
Synchronised Yes
Stable Yes
Deprecated No

Support Information

External links and support

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 1.10.8 18 Apr 2024 at 15:34:00

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  pairdrop:
    image: linuxserver/pairdrop:1.10.8
    container_name: pairdrop
    restart: no
    environment:
      - WS_FALLBACK=false # Set to true to enable websocket fallback if the peer to peer WebRTC connection is not available to the client.
      - TZ=Europe/London # Time Zone
      - RATE_LIMIT=false # Set to true to limit clients to 100 requests per 5 min.
      - PUID=1000 # UID to run the application as
      - PGID=1000 # GID to run the application as
    ports:
      - 3000:3000/tcp # Web UI

CLI

docker create \
  --name=pairdrop \
  -e WS_FALLBACK=false `# Set to true to enable websocket fallback if the peer to peer WebRTC connection is not available to the client.` \
  -e TZ=Europe/London `# Time Zone` \
  -e RATE_LIMIT=false `# Set to true to limit clients to 100 requests per 5 min.` \
  -e PUID=1000 `# UID to run the application as` \
  -e PGID=1000 `# GID to run the application as` \
  -p 3000:3000/tcp `# Web UI` \
  --restart no \
  linuxserver/pairdrop:1.10.8