mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-10-01 20:04:52 +00:00

* Support for RDF, SPARQL, SQL-TO-SPARQL * Tests are working * Add RDF relations tests * improve Knowledge Graph UI, tags , glossary term relations * Lang translations * Fix level depth querying * Add semantic search interfaces , integration into search * cleanup * Update generated TypeScript types * Fix styling * remove duplicated ttl file * model generator cleanup * Update OM - DCAT vocab * Update DataProduct Schema * Improve JsonLD Translator * Update generated TypeScript types * Fix Tests * Fix java checkstyle * Add RDF workflows * fix unit tests * fix e2e --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com>
39 lines
1.1 KiB
YAML
39 lines
1.1 KiB
YAML
# Fuseki using Rosetta 2 emulation on Apple Silicon
|
|
services:
|
|
fuseki:
|
|
# Force AMD64 platform with Rosetta 2 emulation
|
|
platform: linux/amd64
|
|
image: stain/jena-fuseki:5.0.0
|
|
container_name: fuseki-standalone
|
|
hostname: fuseki
|
|
ports:
|
|
- "3030:3030"
|
|
environment:
|
|
# Admin credentials
|
|
- ADMIN_PASSWORD=admin
|
|
# JVM memory settings
|
|
- JVM_ARGS=-Xmx8g -Xms4g
|
|
- FUSEKI_BASE=/fuseki
|
|
volumes:
|
|
# Mount directory for persistent storage
|
|
- ${DOCKER_VOLUMES_PATH:-./docker-volumes}/fuseki:/fuseki
|
|
networks:
|
|
- fuseki-net
|
|
# Create openmetadata dataset on startup
|
|
entrypoint: /bin/sh -c "mkdir -p /fuseki/databases/openmetadata && exec /docker-entrypoint.sh /jena-fuseki/fuseki-server --update --loc=/fuseki/databases/openmetadata /openmetadata"
|
|
healthcheck:
|
|
test: ["CMD", "wget", "-q", "--spider", "http://localhost:3030/$/ping"]
|
|
interval: 15s
|
|
timeout: 10s
|
|
retries: 5
|
|
start_period: 30s
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 10G
|
|
reservations:
|
|
memory: 8G
|
|
|
|
networks:
|
|
fuseki-net:
|
|
driver: bridge |