Microservice for converting office documents using LibreOffice
$ curl --form [email protected] http://localhost/convert/pdf > myfile.pdf
If you convert files that generates multiple files, like docx with images til html, it will return a zip with all files.
$ curl --form [email protected] http://localhost/convert/html > myfile.zip
Use the prebuild image
$ docker run -d -p 80:3000 --name micro-office-converter alheimsins/micro-office-converter
Build it yourself
$ docker build -t micro-office-converter .
Run image
$ docker run -d -p 80:3000 --name micro-office-converter micro-office-converter
Created with ❤ for Alheimsins