fork-open-data-tourism/docker-compose.yml
Clement b3bc1fdc68
All checks were successful
Build Docker Image / run (push) Successful in 24s
fix: make java work in docker compose
2024-05-13 23:15:32 +02:00

25 lines
513 B
YAML

version: '3.1'
services:
blazegraph:
image: conjecto/blazegraph:2.1.5
restart: always
ports:
- 9999:9999
environment:
JAVA_OPTS: "-Xms6G -Xmx6G"
volumes:
- ./dataset:/docker-entrypoint-initdb.d
ulimits:
nofile:
soft: 65536
hard: 65536
datatourisme:
build: docker
ports:
- "8080:80"
restart: always
depends_on:
- blazegraph