A docker image that contains CDO, the Climate Data Operators application
You can run this with docker run alexgleith/cdo
. For example, find out the version and format support with docker run alexgleith/cdo cdo --version
.
You can also run it with a local folder mounted, so that you can process a dataset:
docker run --rm -v /tmp:/tmp alexgleith/cdo cdo sinfov /tmp/example.grb
Or start up an interactive prompt like:
docker run --rm -v /tmp:/tmp alexgleith/cdo cdo sinfov /tmp/example.grb
This repo contains a Dockerfile and a Makefile. You can build the dockerfile with docker build .
or by running make build
.
You can run a shell with /tmp
mounted using make shell
.