-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
57 lines (50 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
version: '2.1'
services:
dynamodb-local:
image: amazon/dynamodb-local:1.16.0
ports:
- "29713:8000"
command: "-jar DynamoDBLocal.jar -sharedDb -dbPath ."
create-dynamodb-users-table:
image: amazon/aws-cli:2.2.5
depends_on:
- "dynamodb-local"
volumes:
- ./.local-dynamodb-credential:/root/.aws/credentials
command: >
dynamodb create-table
--region eu-west-3 --endpoint-url http://dynamodb-local:8000
--attribute-definitions '[{ "AttributeName": "sub", "AttributeType": "S" }]'
--table-name users --key-schema '[{ "AttributeName": "sub", "KeyType": "HASH" }]'
--provisioned-throughput '{"ReadCapacityUnits": 10, "WriteCapacityUnits": 10}'
jaeger:
image: jaegertracing/all-in-one:1.20.0
command: ["--log-level=debug"]
ports:
- "29798:6831/udp"
- "29797:16686"
- "29796:14268"
- "29795:14250"
opentelemetry_collector:
image: otel/opentelemetry-collector:0.18.0
command: ["--config=/etc/otel-collector-config.yaml", "--log-level=debug"]
depends_on:
- jaeger
volumes:
- ./otel-collector-config.yaml:/etc/otel-collector-config.yaml
ports:
- "29799:55681"
memcached:
image: bitnami/memcached:1.6.9
environment:
MEMCACHED_USERNAME: "memcached"
MEMCACHED_PASSWORD: "memcached"
ports:
- "29794:11211"
profile_mock_server:
image: stoplight/prism:4
command: -p 29712 mock --host 0.0.0.0 "/etc/connect-profile-openapi.yml"
volumes:
- ./connect-profile-openapi.yml:/etc/connect-profile-openapi.yml
ports:
- "29712:29712"