Skip to content

Commit cd58439

Browse files
Updated integration test config to pass
1 parent c442678 commit cd58439

File tree

10 files changed

+375
-407
lines changed

10 files changed

+375
-407
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
services:
2+
localstack:
3+
container_name: "localstack-ehr-out-service"
4+
image: localstack/localstack
5+
network_mode: bridge
6+
ports:
7+
- "127.0.0.1:4566:4566"
8+
environment:
9+
- SERVICES=sqs,dynamodb
10+
- DEFAULT_REGION=eu-west-2
11+
- GATEWAY_LISTEN=4566
12+
volumes:
13+
- "/var/lib/localstack:/var/lib/localstack"
14+
- "/var/run/docker.sock:/var/run/docker.sock"
15+
links:
16+
- dynamodb-local:dynamodb-local
17+
dynamodb-local:
18+
network_mode: bridge
19+
image: amazon/dynamodb-local
20+
command: "-jar DynamoDBLocal.jar -sharedDb -inMemory"
21+
ports:
22+
- "4573:8000"
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
services:
2+
localstack:
3+
container_name: "localstack-ehr-out-service"
4+
image: localstack/localstack
5+
network_mode: bridge
6+
ports:
7+
- "127.0.0.1:4566:4566"
8+
environment:
9+
- SERVICES=sqs,dynamodb
10+
- DEFAULT_REGION=eu-west-2
11+
- GATEWAY_LISTEN=4566
12+
volumes:
13+
- "/var/lib/localstack:/var/lib/localstack"
14+
- "/var/run/docker.sock:/var/run/docker.sock"

0 commit comments

Comments
 (0)