-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
43 lines (39 loc) · 1.03 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
version: "3.2"
services:
activity-listener:
image: activity-listener
build:
context: .
dockerfile: ActivityListener/Dockerfile
args:
- LBHPACKAGESTOKEN=${LBHPACKAGESTOKEN}
ports:
- 3000:3000
environment:
- DynamoDb_LocalMode=true
- DynamoDb_LocalServiceUrl=http://dynamodb-database:8000
- AWS_REGION=eu-west-2
- AWS_ACCESS_KEY_ID=local
- AWS_SECRET_ACCESS_KEY=local
links:
- dynamodb-database
activity-listener-test:
image: activity-listener-test
build:
context: .
dockerfile: ActivityListener.Tests/Dockerfile
args:
- LBHPACKAGESTOKEN=${LBHPACKAGESTOKEN}
- SONAR_TOKEN=${SONAR_TOKEN}
environment:
- DynamoDb_LocalMode=true
- DynamoDb_LocalServiceUrl=http://dynamodb-database:8000
- AWS_REGION=eu-west-2
- AWS_ACCESS_KEY_ID=local
- AWS_SECRET_ACCESS_KEY=local
links:
- dynamodb-database
dynamodb-database:
image: amazon/dynamodb-local
ports:
- 8000:8000