From 1a2827477eacdbea00d9dcd5e5bc4f565f5f96af Mon Sep 17 00:00:00 2001 From: L4RM4ND <21357789+l4rm4nd@users.noreply.github.com> Date: Sun, 26 Feb 2023 04:11:09 +0100 Subject: [PATCH] add pairdrop --- README.md | 1 + examples/pairdrop/README.md | 3 +++ examples/pairdrop/docker-compose.yml | 16 ++++++++++++++++ 3 files changed, 20 insertions(+) create mode 100644 examples/pairdrop/README.md create mode 100644 examples/pairdrop/docker-compose.yml diff --git a/README.md b/README.md index d17e270..ef4f42b 100644 --- a/README.md +++ b/README.md @@ -113,6 +113,7 @@ docker compose up - [Projectsend](examples/projectsend) - ProjectSend is a free, open source software that lets you share files with your clients, focused on ease of use and privacy. It supports clients groups, system users roles, statistics, multiple languages, detailed logs and much more! - [Pwndrop](examples/pwndrop) - pwndrop is a self-deployable file hosting service for sending out red teaming payloads or securely sharing your private files over HTTP and WebDAV. - [Droppy](examples/droppy) (deprecated) - droppy is a self-hosted file storage server with a web interface and capabilities to edit files and view media directly in the browser. It is particularly well-suited to be run on low-end hardware like the Raspberry Pi. +- [PairDrop](examples/pairdrop) - PairDrop is a sublime alternative to AirDrop that works on all platforms. Send images, documents or text via peer to peer connection to devices in the same local network/Wi-Fi or to paired devices. ### Publishing, Writing, Blogging, Hosting - [Ghost](examples/ghost) - Ghost is a free and open source blogging platform written in JavaScript and distributed under the MIT License, designed to simplify the process of online publishing for individual bloggers as well as online publications. diff --git a/examples/pairdrop/README.md b/examples/pairdrop/README.md new file mode 100644 index 0000000..1f17018 --- /dev/null +++ b/examples/pairdrop/README.md @@ -0,0 +1,3 @@ +# References + +- https://hub.docker.com/r/linuxserver/pairdrop diff --git a/examples/pairdrop/docker-compose.yml b/examples/pairdrop/docker-compose.yml new file mode 100644 index 0000000..35f7545 --- /dev/null +++ b/examples/pairdrop/docker-compose.yml @@ -0,0 +1,16 @@ +version: "2.1" + +services: + pairdrop: + image: lscr.io/linuxserver/pairdrop:latest + container_name: pairdrop + hostname: pairdrop + environment: + - PUID=1000 + - PGID=1000 + - TZ=Europe/Berlin + - RATE_LIMIT=false #optional + - WS_FALLBACK=false #optional + ports: + - 3215:3000 + restart: unless-stopped