Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Adds DynamoDB Adapter #333

Draft
wants to merge 20 commits into
base: main
Choose a base branch
from
Draft
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add dynamo db admin on port 8705
  • Loading branch information
ajwad-shaikh committed Oct 7, 2023
commit c43c686d328e97e8467467f0e76e08bb7305adeb
13 changes: 13 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,19 @@ services:
- database
ports:
- "8704:8012"

dynamodb-admin:
image: aaronshaf/dynamodb-admin
container_name: dynamodb-admin
ports:
- "8705:8705"
environment:
DYNAMO_ENDPOINT: http:https://dynamodb:8012
PORT: 8705
AWS_ACCESS_KEY_ID: "DUMMYKEYID"
AWS_SECRET_ACCESS_KEY: "DUMMYSECRETKEY"
networks:
- database

redis:
image: redis:6.0-alpine
Expand Down