AtomGraph / LinkedDataHub

The low-code Knowledge Graph application platform. Apache license.
https://atomgraph.github.io/LinkedDataHub/
Apache License 2.0
492 stars 123 forks source link

LinkedDataHub container unhealthy #175

Open namedgraph opened 1 year ago

namedgraph commented 1 year ago

docker-compose up --build fails on M1 Mac because startup takes too long (the healthcheck grace period is 80s):

dependency failed to start: container linkeddatahub-linkeddatahub-1 is unhealthy

RDF parsing using Java-based riot seems unusually slow. Likely because of the non-native Docker image.

namedgraph commented 1 year ago

Increasing the grace period in the Dockerfile seems to help. For example:

HEALTHCHECK --start-period=140s ...
namedgraph commented 1 year ago

Related to #155