2016-06-05 17:17:34 +02:00
|
|
|
OpenRefine
|
|
|
|
==========
|
|
|
|
|
|
|
|
![](https://badge.imagelayers.io/vimagick/openrefine:latest.svg)
|
|
|
|
|
|
|
|
[OpenRefine][1] (formerly Google Refine) is a powerful tool for working with messy
|
|
|
|
data: cleaning it; transforming it from one format into another; and extending
|
|
|
|
it with web services and external data.
|
|
|
|
|
2016-07-06 11:04:44 +02:00
|
|
|
Please read the [wiki][2] to learn more.
|
|
|
|
|
2016-06-05 17:17:34 +02:00
|
|
|
### docker-compose.yml
|
|
|
|
|
|
|
|
```yaml
|
|
|
|
openrefine:
|
|
|
|
image: vimagick/openrefine
|
|
|
|
ports:
|
|
|
|
- "3333:3333"
|
|
|
|
volumes:
|
2016-07-06 11:04:44 +02:00
|
|
|
- ./data:/data
|
2020-06-05 08:02:16 +02:00
|
|
|
restart: unless-stopped
|
2016-06-05 17:17:34 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
[1]: http://openrefine.org/index.html
|
2016-07-06 11:04:44 +02:00
|
|
|
[2]: https://github.com/OpenRefine/OpenRefine/wiki
|