/dynamodb-local

AWS DynamoDB image for local development (with OpenJDK 9)

AWS DynamoDB Local image

A Docker image containing a local development version of Amazon's DynamoDB, running in OpenJDK 9.

Several DynamoDB images already exist, like this one or this one, but I couldn't find one that had been updated with the latest official build of DynamoDB Local.

Sample usage (in docker-compose.yml):

services:
  my_app:
    build: .
    depends_on:
      - dynamodb

  dynamodb:
    image: azza-bazoo/dynamodb-local