The latest checkouts of Mapserver Mapcache and its Node Mapcache bindings
66
This is a base image providing the latest git checkouts of Mapserver Mapcache and Node Mapcache running under a recent version of Node.js. By default the image runs the Node Mapcache tests:
docker run homme/node-mapcache:latest
Running Node directly from the image allows you to require() and play around with Node Mapcache interactively:
docker run -t -i homme/node-mapcache:latest /usr/bin/node
> var mapcache = require('mapcache');
undefined
> mapcache.versions
{ node_mapcache: '0.1.12',
mapcache: '1.3dev',
apr: '1.4.6' }
Note that the latest Mapcache git checkout is the latest at the time the image was built. If you want the absolute latest code of both Node Mapcache and Mapcache, build the docker image yourself locally along these lines:
docker build -t homme/node-mapcache:latest https://raw.github.com/geo-data/node-mapcache/master/docker/latest/Dockerfile
No tags have been pushed to this repository yet.