Run AWS DynamoDB Local in a container.
1M+
Run DynamoDB locally with Docker, more details at github.com/dwmkerr/docker-dynamodb:
docker run -p 8000:8000 dwmkerr/dynamodb
open http://localhost:8000/shell
Try it out by hitting the local shell:

This container has full support for all of the commandline parameters in the DynamoDB Documentation.
To run an ephemeral instance of DynamoDB:
docker run -p 8000:8000 dwmkerr/dynamodb
If you want to have persistent data, just mount a volume from your host and set it as a data directory for DynamoDB:
docker run -v /data:/data -p 8000:8000 dwmkerr/dynamodb -dbPath /data
For development instructions, check the GitHub page at github.com/dwmkerr/docker-dynamodb.
Content type
Image
Digest
Size
220.9 MB
Last updated
almost 7 years ago
docker pull dwmkerr/dynamodb