cqse/file-upload
Utility to allow uploading files to servers when file shares are not an option
49
PASSWORD
./opt/upload/data
as a volume to access the uploaded files5000
Upload must be via HTTP POST. Parameters:
file
: the file to uploadpassword
: the passwordname
: the name or subpath under which to place the file, e.g. some-inbox/file.txt
. If not given, the data from the uploaded file is usedE.g. with curl:
curl -v -XPOST -Ffile=@file.txt -Fpassword=SECRET
-Fname=foo/bar.txt localhost/upload/
docker pull cqse/file-upload