DEV Community

Discussion on: Any NoSQL true believers out there?

Collapse
 
klockner profile image
Gabriel Klockner • Edited

It is pretty simple to create a local environment with DynamoDB. I found a docker image a time ago with it, where you can use the javascript shell playground to learn and test some queries. It also have a jar from AWS if I'm not wrong.

Thread Thread
 
klockner profile image
Gabriel Klockner

I found the image that I have used (dwmkerr/dynamodb:latest), that was my docker-compose.yml

dynamodb:
image: dwmkerr/dynamodb:latest
ports:
- 8000:8000
command: -sharedDb

Thread Thread
 
yaser profile image
Yaser Al-Najjar

Thanks... this will help us a lot :)