All Projects → ONSdigital → highcharts-export-docker

ONSdigital / highcharts-export-docker

Licence: other
Highcharts Export Server Docker container

Programming Languages

PureBasic
71 projects

highcharts-export-docker

This repo contains what is required to build the docker image for the highcharts export server. It uses the more recent node implementation of the highcharts export server:

https://github.com/highcharts/node-export-server

If you want to skip the build phase and get a container running there is an automatic build setup on dockerhub. Any commits to this repo will automatically build a new container here:

https://hub.docker.com/r/onsdigital/highcharts-export-node/

Build

docker build -t onsdigital/highcharts-export-node . 

Run

docker run -d --name highcharts -p 8889:8080 onsdigital/highcharts-export-node

The above command will expose the service on port 8889. This can be changed if required.

Test

Once the server is running here is an example curl command to render a chart:

curl -H "Content-Type: application/json" -X POST -d '{"infile":{"title": {"text": "Steep Chart"}, "xAxis": {"categories": ["Jan", "Feb", "Mar"]}, "series": [{"data": [29.9, 71.5, 106.4]}]}}' 127.0.0.1:8889 -o testchart.png
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].