We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da785c5 commit fae4d9cCopy full SHA for fae4d9c
.github/workflows/stage-4-acceptance.yaml
@@ -111,7 +111,7 @@ jobs:
111
needs: environment-set-up
112
timeout-minutes: 10
113
env:
114
- LOCALSTACK_INTERNAL_DYNAMODB_ENDPOINT: http://host.docker.internal:4566/
+ LOCALSTACK_INTERNAL_DYNAMODB_ENDPOINT: http://localstack:4566/
115
RUNNING_LOCALSTACK_URL: http://localhost:4566/
116
steps:
117
- name: "Checkout code"
@@ -130,6 +130,10 @@ jobs:
130
with:
131
image-tag: 'latest'
132
install-awslocal: 'true'
133
+ - name: Check Docker networks
134
+ run: docker network ls
135
+ - name: Inspect Lambda container
136
+ run: docker inspect $(docker ps -q --filter "ancestor=localstack/localstack") | grep NetworkMode
137
- name: "Run integration test"
138
run: |
139
make test-integration
0 commit comments