-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (40 loc) · 1009 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (40 loc) · 1009 Bytes
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
services:
consul:
image: hashicorp/consul
command: agent -server -ui -node=server-1 -bootstrap-expect=1 -client=0.0.0.0
ports:
- 8500:8500
- 8600:8600/udp
rabbit-mq:
image: "rabbitmq:3-management"
ports:
- "15672:15672"
- "5672:5672"
jaeger:
image: "jaegertracing/all-in-one:latest"
ports:
- "6831:6831"
- "16686:16686"
- "14268:14268"
- "4318:4318"
- "4317:4317"
environment:
COLLECTOR_OTLP_ENABLED: true
order-mongo:
image: "mongo:7.0.8"
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: password
ports:
- "27017:27017"
mongo-express:
image: "mongo-express"
restart: always
ports:
- "8082:8081"
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: password
ME_CONFIG_MONGODB_URL: mongodb://root:password@order-mongo:27017/
ME_CONFIG_BASICAUTH: false