mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-12-21 13:23:02 +01:00
add openrefine
This commit is contained in:
@@ -81,6 +81,7 @@ A collection of delicious docker recipes.
|
||||
- [x] nullmailer-arm
|
||||
- [x] obfsproxy
|
||||
- [x] opencart
|
||||
- [x] openrefine
|
||||
- [x] openvpn :+1:
|
||||
- [x] pdnsd
|
||||
- [x] phantomjs
|
||||
|
||||
23
openrefine/Dockerfile
Normal file
23
openrefine/Dockerfile
Normal file
@@ -0,0 +1,23 @@
|
||||
#
|
||||
# Dockerfile for openrefine
|
||||
#
|
||||
|
||||
FROM java:8-jre-alpine
|
||||
MAINTAINER kev <noreply@easypi.info>
|
||||
|
||||
ENV OR_VERSION 2.6-rc.2
|
||||
ENV OR_FILE openrefine-linux-${OR_VERSION}.tar.gz
|
||||
ENV OR_URL https://github.com/OpenRefine/OpenRefine/releases/download/${OR_VERSION}/${OR_FILE}
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
RUN set -xe \
|
||||
&& apk add -U bash curl tar \
|
||||
&& curl -sSL ${OR_URL} | tar xz --strip 1 \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
VOLUME /root/.local/share/openrefine
|
||||
|
||||
EXPOSE 3333
|
||||
|
||||
CMD /app/refine -i 0.0.0.0
|
||||
22
openrefine/README.md
Normal file
22
openrefine/README.md
Normal file
@@ -0,0 +1,22 @@
|
||||
OpenRefine
|
||||
==========
|
||||
|
||||

|
||||
|
||||
[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.
|
||||
|
||||
### docker-compose.yml
|
||||
|
||||
```yaml
|
||||
openrefine:
|
||||
image: vimagick/openrefine
|
||||
ports:
|
||||
- "3333:3333"
|
||||
volumes:
|
||||
- ./data:/root/.local/share/openrefine
|
||||
restart: always
|
||||
```
|
||||
|
||||
[1]: http://openrefine.org/index.html
|
||||
7
openrefine/docker-compose.yml
Normal file
7
openrefine/docker-compose.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
openrefine:
|
||||
image: vimagick/openrefine
|
||||
ports:
|
||||
- "3333:3333"
|
||||
volumes:
|
||||
- ./data:/root/.local/share/openrefine
|
||||
restart: always
|
||||
Reference in New Issue
Block a user