Skip to content

Commit 37f2895

Browse files
Try http://localstack:4566/, and log some info during the integration run
1 parent da785c5 commit 37f2895

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/stage-4-acceptance.yaml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
needs: environment-set-up
112112
timeout-minutes: 10
113113
env:
114-
LOCALSTACK_INTERNAL_DYNAMODB_ENDPOINT: http://host.docker.internal:4566/
114+
LOCALSTACK_INTERNAL_DYNAMODB_ENDPOINT: http://localstack:4566/
115115
RUNNING_LOCALSTACK_URL: http://localhost:4566/
116116
steps:
117117
- name: "Checkout code"
@@ -129,7 +129,11 @@ jobs:
129129
uses: LocalStack/[email protected]
130130
with:
131131
image-tag: 'latest'
132-
install-awslocal: 'true'
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
133137
- name: "Run integration test"
134138
run: |
135139
make test-integration

0 commit comments

Comments
 (0)