OpenRefine is a free, open source power tool for working with messy data and improving it. This repository contains Dockerbuild files for automated builds. https://hub.docker.com/r/felixlohmeier/openrefine/
Go to file
Felix Lohmeier 152dfe4909 add java6 and java7 versions for tests 2019-08-05 00:26:09 +02:00
2.6rc1 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
2.6rc2 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
2.7 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
2.7-java6 add java6 and java7 versions for tests 2019-08-05 00:26:09 +02:00
2.7-java7 add java6 and java7 versions for tests 2019-08-05 00:26:09 +02:00
2.7rc1 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
2.7rc2 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
2.8 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
2.8-java6 add java6 and java7 versions for tests 2019-08-05 00:26:09 +02:00
2.8-java7 add java6 and java7 versions for tests 2019-08-05 00:26:09 +02:00
3.0 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
3.0-java7 add java6 and java7 versions for tests 2019-08-05 00:26:09 +02:00
3.1 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
3.1-java7 add java6 and java7 versions for tests 2019-08-05 00:26:09 +02:00
3.2 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
2017-10-28-with-pr1294 Update maintainer info to new format 2019-07-29 22:15:58 +02:00
README.md Update to OpenRefine 3.2, remove development version 2019-07-29 21:46:20 +02:00

README.md

Docker container for OpenRefine Server

OpenRefine is a free, open source power tool for working with messy data and improving it. These docker images are build from official released versions (3.2, 3.1, 3.0, 2.8, 2.7, 2.7rc2, 2.7rc1, 2.6rc2, 2.6rc1) and from a fork (2017-10-28-with-pr1294).

Dockerbuild files are inspired by vimagick/openrefine and psychemedia/openrefine.

versions

cf. OpenRefine Releases

OpenRefine 3.2 (2019-07-16) from java:8-jre-alpine [3.2] [latest]

docker pull felixlohmeier/openrefine:3.2

OpenRefine 3.1 (2018-11-29) from java:8-jre-alpine [3.1]

docker pull felixlohmeier/openrefine:3.1

OpenRefine 3.0 (2018-09-16) from java:8-jre-alpine [3.0]

docker pull felixlohmeier/openrefine:3.0

OpenRefine 2.8 (2017-11-19) from java:8-jre-alpine [2.8]

docker pull felixlohmeier/openrefine:2.8

OpenRefine 2.7 (2017-06-18) from java:8-jre-alpine [2.7]

docker pull felixlohmeier/openrefine:2.7

OpenRefine 2.7 Release Candidate 2 (2017-03-03) from java:8-jre-alpine [2.7rc2]

docker pull felixlohmeier/openrefine:2.7rc2

OpenRefine 2.7 Release Candidate 1 (2017-02-10) from java:8-jre-alpine [2.7rc1]

docker pull felixlohmeier/openrefine:2.7rc1

OpenRefine 2.6 Release Candidate 2 (2015-10-14) from java:8-jre-alpine [2.6rc2]

docker pull felixlohmeier/openrefine:2.6rc2

OpenRefine 2.6 Release Candidate 1 (2015-04-30) from java:8-jre-alpine [2.6rc1]

docker pull felixlohmeier/openrefine:2.6rc1

OpenRefine fork with extended cross (snapshot 2017-10-28 with pull request #1294) from java:8-jre-alpine [2017-10-28-with-pr1294]

docker pull felixlohmeier/openrefine:2017-10-28-with-pr1294

usage

docker run -p 80:3333 felixlohmeier/openrefine:latest

point your browser on host machine to http://localhost or point browser on any machine within your network to the ip address of the host machine

example for customized run command

docker run --rm -p 80:3333 -v /home/felix/refine:/data:z felixlohmeier/openrefine:latest -i 0.0.0.0 -m 4G -d /data

  • automatically remove docker container when it exits
  • publish internal port 3333 to host port 80
  • mount host directory /home/felix/refine as working directory
  • make openrefine available in the network
  • increase java heap size to 4 GB
  • set refine workspace to /data

batch processing with python client

see https://hub.docker.com/r/felixlohmeier/openrefine-client/ for a command line interface (e.g. for usage in shell scripts)