Minimalistic Docker Image to upload files to a server.
1.7K
This Docker Image will upload any files to your server.
:warning: Security warning: There is absolutely no security guaranteed, so you have to take care about this yourself.
Pull the Image via docker pull ausraster/minimalistic-uploader and run it.
There are some environment variables available:
Both of these must be present in order to use auth_basic.
curl -F "[email protected]" https://yoururl.com/uploader | xclip -sel clip
curl -u username:password -F "[email protected]" https://yoururl.com/uploader | xclip -sel clip
server {
listen 80;
listen [::]:80;
server_name yoururl.com;
location / {
proxy_pass http://127.0.0.1:8080/;
proxy_set_header Host $host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
}
}
Content type
Image
Digest
Size
71.5 MB
Last updated
over 5 years ago
docker pull ausraster/minimalistic-uploader