-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
86 lines (81 loc) · 1.75 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
version: '3.4'
services:
sqldata:
container_name: sqldata
image: mcr.microsoft.com/mssql/server:2019-latest
environment:
- SA_PASSWORD=Pass@@word
- ACCEPT_EULA=Y
ports:
- 5433:1433
volumes:
- sqldata:/var/opt/mssql
deploy:
replicas: 1
resources:
limits:
memory: 1500M
cpus: "1"
mongodb:
container_name: mongodb
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: Pass!!word
ports:
- 27017:27017
volumes:
- mongodata:/data/db
- mongoconfig:/data/configdb
deploy:
replicas: 1
resources:
limits:
memory: 1500M
cpus: "1"
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: Pass!!word
ME_CONFIG_MONGODB_URL: mongodb://root:Pass!!word@mongodb:27017/
rabbitmq:
container_name: rabbitmq
hostname: rabbitmq
image: masstransit/rabbitmq:latest
ports:
- 15672:15672
- 5672:5672
volumes:
- rabbitmq:/var/lib/rabbitmq
deploy:
replicas: 1
resources:
limits:
memory: 128M
cpus: "0.5"
jaeger:
image: jaegertracing/all-in-one:latest
ports:
- "5775:5775/udp"
- "6831:6831/udp"
- "6832:6832/udp"
- "5778:5778"
- "16686:16686"
- "14250:14250"
- "14268:14268"
- "14269:14269"
- "9411:9411"
volumes:
sqldata:
external: false
mongodata:
external: false
mongoconfig:
external: false
rabbitmq:
external: false