mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-23 01:39:27 +02:00
28 lines
623 B
Markdown
28 lines
623 B
Markdown
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.
|
|
|
|
Please read the [wiki][2] to learn more.
|
|
|
|
### docker-compose.yml
|
|
|
|
```yaml
|
|
version: "3.8"
|
|
services:
|
|
openrefine:
|
|
image: vimagick/openrefine
|
|
ports:
|
|
- "3333:3333"
|
|
volumes:
|
|
- ./data:/data
|
|
restart: unless-stopped
|
|
```
|
|
|
|
[1]: http://openrefine.org/index.html
|
|
[2]: https://github.com/OpenRefine/OpenRefine/wiki
|