mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:02 +02:00
15 lines
296 B
YAML
15 lines
296 B
YAML
version: "3.8"
|
|
services:
|
|
openrefine:
|
|
image: vimagick/openrefine
|
|
ports:
|
|
- "3333:3333"
|
|
volumes:
|
|
- ./data:/data
|
|
environment:
|
|
- REFINE_INTERFACE=0.0.0.0
|
|
- REFINE_PORT=3333
|
|
- REFINE_MEMORY=1024M
|
|
- REFINE_DATA_DIR=/data
|
|
restart: unless-stopped
|