bf2343b7e4
Integration Tests - MySQL + Elasticsearch / Detect Changes (push) Has been cancelled
Integration Tests - MySQL + Elasticsearch / integration-tests-mysql-elasticsearch (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + Elasticsearch + Redis / integration-tests-postgres-elasticsearch-redis (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / Detect Changes (push) Has been cancelled
Integration Tests - PostgreSQL + OpenSearch / integration-tests-postgres-opensearch (push) Has been cancelled
Java Checkstyle / java-checkstyle (push) Has been cancelled
Maven Collate Tests / maven-collate-ci (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests-status (push) Has been cancelled
Publish Package to Maven Central Repository / publish-maven-packages (push) Has been cancelled
OpenMetadata Service Unit Tests / Detect Changes (push) Has been cancelled
OpenMetadata Service Unit Tests / openmetadata-service-unit-tests (push) Has been cancelled
OpenMetadata Service Unit Tests / k8s_operator-unit-tests (push) Has been cancelled
47 lines
1.6 KiB
YAML
47 lines
1.6 KiB
YAML
# Fuseki using Rosetta 2 emulation on Apple Silicon
|
|
services:
|
|
fuseki:
|
|
# Force AMD64 platform with Rosetta 2 emulation
|
|
platform: linux/amd64
|
|
# Build from the in-repo Dockerfile (Fuseki 5.6.0). See
|
|
# 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=-Xmx8g -Xms4g
|
|
volumes:
|
|
# Host bind path renamed from `.../fuseki` (used by the old stain image
|
|
# layout) to `.../fuseki-tdb2-data` so an existing host directory with
|
|
# the previous layout isn't silently mounted at /fuseki-data — Fuseki
|
|
# would see an empty TDB2 store and the old data would appear lost.
|
|
# Operators upgrading can either delete the new dir to start fresh or
|
|
# migrate old data manually.
|
|
- ${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: 10G
|
|
reservations:
|
|
memory: 8G
|
|
|
|
networks:
|
|
fuseki-net:
|
|
driver: bridge |