Converts all files into markdown before the doxtak build.
You can use it like this:
docker run -it --rm -p 9000:9000 -v /path/to/data:/data abousselmi/doxtak-convertTo fire up the conversion:
curl -X POST http://your.ip.address:9000/api/v1/convert | jqResponse:
{
"timestamp": "2018-12-04T16:18:20.146848547Z",
"duration": 1.145996924,
"id": 3
}To ping the API, you can do:
curl -X GET http://your.ip.address:9000/api/v1/pingResponse:
pongThe swagger specification is available here:
http://your.ip.address:9000/swagger.jsonYou can build your own image like this:
docker build \
--build-arg http_proxy=$http_proxy \
--build-arg https_proxy=$https_proxy \
-t doxtak-convert .MIT