mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-09-27 01:45:32 +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>
37 lines
856 B
YAML
37 lines
856 B
YAML
version: "3.9"
|
|
|
|
services:
|
|
fuseki:
|
|
image: stain/jena-fuseki:5.0.0
|
|
container_name: openmetadata-fuseki
|
|
hostname: fuseki
|
|
ports:
|
|
- "3030:3030"
|
|
environment:
|
|
- ADMIN_PASSWORD=admin
|
|
- JVM_ARGS=-Xmx4g -Xms2g
|
|
- FUSEKI_BASE=/fuseki
|
|
volumes:
|
|
- fuseki-data:/fuseki
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 4G
|
|
reservations:
|
|
memory: 2G
|
|
networks:
|
|
- app_net
|
|
# Create the database directory before starting Fuseki
|
|
entrypoint: /bin/sh -c "mkdir -p /fuseki/databases/openmetadata && exec /docker-entrypoint.sh /jena-fuseki/fuseki-server --update --loc=/fuseki/databases/openmetadata /openmetadata"
|
|
|
|
volumes:
|
|
fuseki-data:
|
|
driver: local
|
|
|
|
networks:
|
|
app_net:
|
|
driver: bridge
|
|
ipam:
|
|
driver: default
|
|
config:
|
|
- subnet: 172.16.240.0/24 |