File tree Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Expand file tree Collapse file tree 3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ docker run --name elasticsearch-instance -p 9300:9300 -p 9200:9200 -d elasticsea
44docker run -d --name orientdb -p 2424:2424 -p 2480:2480 -e ORIENTDB_ROOT_PASSWORD=rootpwd orientdb
55docker run --name redis-instance -p 6379:6379 -d redis
66docker run --name riak-instance -d -p 8087:8087 -p 8098:8098 basho/riak-ts
7+ ./dynamodb-driver/dynamoDockerRun.sh
Original file line number Diff line number Diff line change 1+ FROM amazon/dynamodb-local
Original file line number Diff line number Diff line change 1+ AWS_ACCESS_KEY_ID=$( aws --profile default configure get aws_access_key_id)
2+ AWS_SECRET_ACCESS_KEY=$( aws --profile default configure get aws_secret_access_key)
3+
4+ docker build -t my_app .
5+ docker run -it --rm -p 8000:8000 \
6+ -e AWS_ACCESS_KEY_ID=$AWS_ACCESS_KEY_ID \
7+ -e AWS_SECRET_ACCESS_KEY=$AWS_SECRET_ACCESS_KEY \
8+ my_app
You can’t perform that action at this time.
0 commit comments