Skip to content

craftship/dynamodb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

DynamoDB Local

This Docker repo creates a Docker image for the latest version of DynamoDB local.

Usage

FROM craftship/dynamodb:latest

AWS CLI

You can also use the AWS CLI against DynamoDB local once you have it up and running using the relevant --endpoint-url argument. For example:

aws dynamodb create-table \
  --table-name TableName  \
  --attribute-definitions \
    AttributeName=id,AttributeType=S --key-schema \
    AttributeName=id,KeyType=HASH \
  --provisioned-throughput ReadCapacityUnits=2,WriteCapacityUnits=2 \
  --endpoint-url http://localhost:8000

Useful Links

Introduction to DynamoDB

Amazon DynamoDB Local for Desktop Development

Amazon DynamoDB CLI Reference

About

Docker image to run DynamoDB Local

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published