Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update docker compose file #13

Merged
merged 2 commits into from
Oct 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 11 additions & 4 deletions docker/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,23 @@ services:
- "7200:7200"

ldio-workbench:
image: ghcr.io/informatievlaanderen/ldi-orchestrator:latest
image: ldes/ldi-orchestrator:2.9.0-SNAPSHOT
container_name: ldio-workbench
healthcheck:
test: ["CMD", "wget", "-qO-", "http://ldio-workbench:8080/actuator/health"]
interval: 12s
timeout: 3s
retries: 12
ports:
- "8888:8080"

testbed-shacl-validator:
image: ghcr.io/informatievlaanderen/testbed-shacl-validator:latest
image: ghcr.io/informatievlaanderen/testbed-shacl-validator:20241001154215
depends_on:
- graphdb
- ldio-workbench
graphdb:
condition: service_started
ldio-workbench:
condition: service_healthy
environment:
- LDIO_HOST=http://ldio-workbench:8080
- LDIO_SPARQLHOST=http://graphdb:7200
Expand Down
Loading