@awspilot/dynamodb

Issue Star Fork

DynamoDB-UI

dynamodb-ui is a web graphical user interface for Amazon DynamoDB
It can manage tables, indexes and table items
It can not filter and paginate results yet.

Running with Docker

The docker version is based on Amazon Linux 2 and includes:

  • DynamoDB local
  • NodeJS and a basic NodeJS http server to serve static files and proxy dynamodb calls
  • dynamodb-ui

    docker run -p 8000:8000 -p 8080:80 -d awspilotdev/dynamodb-ui

    Dynamodb server will then be available on port 8000 and web ui on http://localhost:8080/

    For persistent storage use:
    docker run -p 8000:8000 -p 80:80 -v storage-volume:/storage -d awspilotdev/dynamodb-ui

    Endpoints

    DynamoDB DynamoDB-local server uses **accessKey** as a **namespace** ( different access keys see different tables )
    endpoint: "http://localhost:8000/" accessKeyId: "myKeyId" secretAccessKey: "whatever"