1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-12-23 01:39:27 +02:00
dockerfiles/openrefine/docker-compose.yml

16 lines
328 B
YAML
Raw Normal View History

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