-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathdocker-compose.yaml
89 lines (82 loc) · 1.56 KB
/
docker-compose.yaml
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
87
88
89
version: '3.9'
services:
hyperf:
container_name: hyperf
image: hyperf/hyperf:8.1-alpine-v3.15-swoole-v5
hostname: hyperf
restart: always
privileged: true
ports:
- 9501:9501
- 9502:9502
- 9503:9503
- 9507:9507
volumes:
- /Users/linjinjin/Documents/dnmp/www:/data/www
tty: true
networks:
- hyperf_networks
nacos:
container_name: nacos
image: nacos/nacos-server:v2.1.0
environment:
- MODE=standalone
- JVM_XMS=512m
- JVM_XMN=256m
hostname: nacos
restart: always
ports:
- 8848:8848
networks:
- hyperf_networks
rabbitmq:
container_name: rabbit
image: rabbitmq:3.9.2
hostname: rabbit
restart: always
ports:
- 15672:15672
- 5672:5672
networks:
- hyperf_networks
redis:
container_name: redis
image: redis:7.0
restart: always
hostname: redis
ports:
- 6379:6379
networks:
- hyperf_networks
elk:
container_name: elk
image: sebp/elk:7.17.1
restart: always
hostname: elk
ports:
- 5601:5601
- 9200:9200
- 5044:5044
networks:
- hyperf_networks
dtm:
image: yedf/dtm:1.14
container_name: dtm
hostname: dtm
restart: always
ports:
- "36789:36789"
- "36790:36790"
networks:
- hyperf_networks
zipkin:
image: openzipkin/zipkin:2
container_name: zipkin
hostname: zipkin
restart: always
ports:
- "9411:9411"
networks:
- hyperf_networks
networks:
hyperf_networks: