1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-20 04:59:27 +02:00
dockerfiles/openrefine/docker-compose.yml

15 lines
296 B
YAML
Raw Normal View History

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