現在のnode.jsを使ったプロジェクトでdockerを初めて使いはじめたので、docker for macを使いはじめました。
dynamodbに接続しようとすると、以下のエラ〜メッセージが表示されます。
localにたてたdynamodbコンテナに接続が上手くできてないようで、原因がよくわかりません。
エラーメッセージ (node:6870) UnhandledPromiseRejectionWarning: Error: connect ETIMEDOUT 169.254.169.254:80 at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1088:14) (node:6870) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)(node:6870) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
docker psをするとportsの番号が0.0.0.0:8042->8000/tcpになっているからだと思ったのですが、これは関係ありますでしょうか?
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES 6ac84cfa2a75 amazon/dynamodb-local "java -jar DynamoDBL…" 44 minutes ago Up 44 minutes 0.0.0.0:8042->8000/tcp dynamodb
# Dynamo DB APP_DDB_ENDPOINT = 'http://localhost:8042' APP_DDB_REGION = 'ap-northeast-1'
あなたの回答
tips
プレビュー