bf2343b7e4
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Waiting to run
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Blocked by required conditions
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Waiting to run
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Blocked by required conditions
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Waiting to run
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Blocked by required conditions
Java Checkstyle / java-checkstyle (push) Waiting to run
Maven Collate Tests / maven-collate-ci (push) Waiting to run
OpenMetadata Service Unit Tests / Detect Changes (push) Waiting to run
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Blocked by required conditions
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Blocked by required conditions
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Blocked by required conditions
Publish Package to Maven Central Repository / publish-maven-packages (push) Waiting to run
49 lines
1.6 KiB
YAML
49 lines
1.6 KiB
YAML
# Standalone Apache Jena Fuseki for RDF/Knowledge Graph storage
|
|
services:
|
|
fuseki:
|
|
# Build from the in-repo Dockerfile (Fuseki 5.6.0). See
|
|
# ../development/docker-compose-fuseki.yml for the full rationale.
|
|
build:
|
|
context: ../rdf-store
|
|
dockerfile: Dockerfile
|
|
image: openmetadata-fuseki:5.6.0
|
|
container_name: fuseki-standalone
|
|
hostname: fuseki
|
|
ports:
|
|
- "3030:3030"
|
|
environment:
|
|
# Local-dev default — production deployments MUST override via
|
|
# FUSEKI_ADMIN_PASSWORD / FUSEKI_OPENMETADATA_PASSWORD env vars.
|
|
- FUSEKI_ADMIN_PASSWORD=${FUSEKI_ADMIN_PASSWORD:-admin}
|
|
- FUSEKI_OPENMETADATA_PASSWORD=${FUSEKI_OPENMETADATA_PASSWORD:-openmetadata-secret}
|
|
- JVM_ARGS=-Xmx4g -Xms2g
|
|
volumes:
|
|
# See docker-compose-fuseki-rosetta.yml — host bind path renamed so
|
|
# existing directories with the old stain layout aren't silently
|
|
# mounted at the new /fuseki-data path.
|
|
- ${DOCKER_VOLUMES_PATH:-./docker-volumes}/fuseki-tdb2-data:/fuseki-data
|
|
networks:
|
|
- fuseki-net
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3030/$/ping"]
|
|
interval: 15s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 30s
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 4G
|
|
reservations:
|
|
memory: 2G
|
|
|
|
networks:
|
|
fuseki-net:
|
|
driver: bridge
|
|
|
|
# Usage:
|
|
# 1. Create the volume directory: mkdir -p fuseki-volume
|
|
# 2. Start: docker-compose -f docker-compose-fuseki-standalone.yml up -d
|
|
# 3. Access Fuseki UI: http://localhost:3030
|
|
# 4. Login: admin/admin
|
|
# 5. SPARQL endpoint: http://localhost:3030/openmetadata/sparql |