Simple, secure file upload API in a docker container
100K+
Docker container that provides an API endpoint for simple, secure file uploads.
This docker container exposes a single, write-only endpoint at /upload that
accepts a single file along with a token GET parameter for authentication. The
authentication for the endpoint, along with the location of the uploaded file,
is configured using environment variables on the container.
You can upload a file with curl like so:
> curl -XPOST -F '[email protected]' dockerhost:3000/upload?key=TESTUSER
Multiple keys are supported, and every key is a 1:1 mapping to a location on disk. Any additional uploads for a key will override the previous upload for that key.
The design goals for this container are a secure upload tool that:
Basic usage is as follows:
docker run \
-e "KEY_TESTUSER=/uploads/testuser-file.txt" \
-v /my_local_dir/:/uploads/ \
-p 3000:3000 \
twostoryrobot/simple-file-upload
This will start the upload server, listening on port 3000. Files that are
uploaded with the key TESTUSER will be placed at /uploads/testuser-file.txt.
You can use a volume to get easy access to this file on your host machine, or in
another container.
Content type
Image
Digest
sha256:96ff395e7…
Size
42.6 MB
Last updated
about 2 years ago
docker pull twostoryrobot/simple-file-upload