Skip to content

spotbun/filedrop

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Filedrop

Simple file drop server.

Docker Cloud Build Status Docker Image Size (tag) Docker Pulls GitHub

Screenshot

Installation

Docker

#                            ┌-- Path to store uploaded files
docker run -d -p 80:80 -v ${pwd}/uploads:/uploads spotbun/filedrop

Docker-Compose

version: "3.7"

services:
  filedrop:
    image: spotbun/filedrop
    ports:
      - "80:80"
    volumes:
      - ./uploads:/uploads

Description

Filedrop is a simple file collecting server. It can be used to quickly spin up a website that allows everyone to anonymously upload files to your server.

Use Cases

Filedrop provides a range of use cases, including:

  • Anonymous Uploading: You can easily upload files to the server without revealing your identity. This feature makes it an excellent tool for sensitive information sharing.
  • Uploading Files to Your Own Server: Filedrop can be used to upload files to your own server.
  • Saving Files on the Go: Filedrop allows you to quickly save files on the go without the need to log in - no matter on what device you are.

Configuration

Filedrop does not need any configuration. If you want to add authentication, you can use a reverse proxy like traefik or nginx.