This small server accepts uploads from HTTP POST
1.3K
npm install -g typescript
npm install -g typings
npm install
typings install
tsc
npm start
docker pull ziaxdk/upload
docker run -it --rm --name upload -p 3000:3000 ziaxdk/upload
docker run -it --rm --name upload -p 80:80 -v /home/:/usr/src/app/uploads/ -e port=80 -e user=foo -e pass=bar ziaxdk/upload
curl -i --user user:pass -F ziax=@[filename_here] http://localhost:3000/upload
curl --upload-file [filename_here] http://localhost:3000/upload
[https://curl.haxx.se/docs/httpscripting.html#PUT]
Content type
Image
Digest
Size
11.3 MB
Last updated
over 10 years ago
docker pull ziaxdk/upload