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

16 lines
328 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
2022-07-23 13:48:21 +00:00
- REFINE_MIN_MEMORY=1024M
2021-12-28 09:45:18 +00:00
- REFINE_MEMORY=1024M
- REFINE_DATA_DIR=/data
2021-11-08 02:43:49 +00:00
restart: unless-stopped