-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
59 lines (58 loc) · 1.26 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
version: '3.4'
services:
mssql:
image: mcr.microsoft.com/mssql/server:2019-latest
container_name: webapi1-mssql
ports:
- 1433:1433
volumes:
- webapi1-mssql-volume:/var/opt/mssql
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=abc@1234
seq:
image: datalust/seq:latest
container_name: ocelot_seq
ports:
- 5342:80
- 5341:5341
environment:
ACCEPT_EULA: "Y"
consul:
image: consul:latest
container_name: ocelot_consul
ports:
- 8500:8500
- 8600:8600
jaeger:
image: jaegertracing/all-in-one:latest
container_name: jaeger
ports:
- "16686:16686"
- "6831:6831/udp"
- "5778:5778"
prometheus:
image: prom/prometheus:latest
container_name: prometheus
ports:
- 9090:9090
volumes:
- ./prometheus.yml:/etc/prometheus/prometheus.yml
networks:
- monitor-net
grafana:
image: grafana/grafana:latest
container_name: grafana
environment:
- GF_SECURITY_ADMIN_USER=${ADMIN_USER:-admin}
- GF_SECURITY_ADMIN_PASSWORD=${ADMIN_PASSWORD:-admin}
ports:
- 3000:3000
networks:
- monitor-net
volumes:
webapi1-mssql-volume:
name: webapi1_mssql-volume
networks:
monitor-net:
driver: bridge