1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-28 09:41:20 +00:00
dockerfiles/openrefine/docker-compose.yml

15 lines
296 B
YAML
Raw Normal View History

2021-11-08 02:43:49 +00:00
version: "3.8"
services:
openrefine:
image: vimagick/openrefine
ports:
- "3333:3333"
volumes:
- ./data:/data
2021-12-28 09:45:18 +00:00
environment:
- REFINE_INTERFACE=0.0.0.0
- REFINE_PORT=3333
- REFINE_MEMORY=1024M
- REFINE_DATA_DIR=/data
2021-11-08 02:43:49 +00:00
restart: unless-stopped