Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/instructure/dynamo-local-admin-docker
A combined docker image with DynamoDB-Local and dynamo-admin.
https://github.com/instructure/dynamo-local-admin-docker
Last synced: 7 days ago
JSON representation
A combined docker image with DynamoDB-Local and dynamo-admin.
- Host: GitHub
- URL: https://github.com/instructure/dynamo-local-admin-docker
- Owner: instructure
- License: mit
- Created: 2016-08-29T20:33:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-02-08T08:19:59.000Z (almost 3 years ago)
- Last Synced: 2024-08-09T02:19:36.148Z (3 months ago)
- Size: 3.91 KB
- Stars: 131
- Watchers: 14
- Forks: 24
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - instructure/dynamo-local-admin-docker - A combined docker image with DynamoDB-Local and dynamo-admin. (Others)
README
# dynamo-local-admin
This project builds a Docker image with [DynamoDB Local](http://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DynamoDBLocal.html) and [dynamodb-admin](https://github.com/aaronshaf/dynamodb-admin) installed and hooked up.
## Usage
```
docker pull instructure/dynamo-local-admin
docker run -p 8000:8000 -it --rm instructure/dynamo-local-admin
```Now open http://localhost:8000/ in your browser, and you'll see the admin UI. You can also hit port 8000 with Dynamo API requests:
```
AWS_ACCESS_KEY_ID=key AWS_SECRET_ACCESS_KEY=secret aws --region us-east-1 dynamodb --endpoint http://localhost:8000/ list-tables
```A proxy is included which differentiates between Dynamo requests and web requests, and proxies to the appropriate server.
## Why?
It's just very convenient if you do a lot of Dynamo development.
## Dinghy Users
If you're using Dinghy and its automatic proxy, `VIRTUAL_HOST` and `VIRTUAL_PORT` are already set, so you don't have to specify any ports in the `docker run` and can just open http://dynamo.docker/ in your browser.