Sign inSign up

tikhoplav/dropbox

By tikhoplav

Updated about 3 years ago

Static file server

Image
0

451

tikhoplav/dropbox repository overview

Dropbox - simple static file server.

https://github.com/tikhoplav/dropbox

Dropbox is a quick solution when you need a file server in your system quick.
It does not provide any security or access control features, just basic file API:

  • GET /path/to/file.ext returns a file stored in the server's disk;
  • POST path/to/ with multipart-formdata stores files on to the disk;
  • DELETE path/to/file.ext removes the file from disk;

Usage

docker run -d -p $PORT:80 -v $DATA_DIR:/data tikhoplav/dropbox

Where $PORT is a host machine port to listen and DATA_DIR is a
host machine directory to store files persistently.

Tag summary

Content type

Image

Digest

sha256:ca29b8cb4

Size

5 MB

Last updated

about 3 years ago

docker pull tikhoplav/dropbox