Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how can we run Neptune graph database on docker

how can we run Neptune graph database on docker

Since Neptune DB has been productized recently it is not available on Localstack can someone guide me how to deploy AWS Neptune DB Service into docker container

like image 477
sidhant das Avatar asked Mar 05 '23 20:03

sidhant das


2 Answers

You don't deploy neptune, you deploy a client application which uses an appropriate client library to access neptune. The neptune software/hardware is managed by AWS and you can't access it except via API.

like image 166
technomage Avatar answered Mar 14 '23 20:03

technomage


My guess is that you're attempting to create a local Neptune compatible docker container (i.e. some docker container with a compatible API). This would be similar to using minios when performing local integration testing with S3. If this is indeed what you're in search of I'd recommend using tinkerpop's gremlin-server image. This should get the job done for you since Neptune uses Gremlin for its query language.

like image 20
theoneandonly2 Avatar answered Mar 14 '23 19:03

theoneandonly2