@@ -3,20 +3,20 @@ services:
3
3
cassandra :
4
4
container_name : temporal-cassandra
5
5
image : cassandra:3.11
6
- ports :
7
- - 9042:9042
8
6
networks :
9
7
- temporal-network
8
+ ports :
9
+ - 9042:9042
10
10
elasticsearch :
11
11
container_name : temporal-elasticsearch
12
12
environment :
13
13
- discovery.type=single-node
14
14
- ES_JAVA_OPTS=-Xms100m -Xmx100m
15
15
image : elasticsearch:7.10.1
16
- ports :
17
- - 9200:9200
18
16
networks :
19
17
- temporal-network
18
+ ports :
19
+ - 9200:9200
20
20
kafka :
21
21
container_name : temporal-kafka
22
22
depends_on :
@@ -26,10 +26,10 @@ services:
26
26
KAFKA_LISTENERS : PLAINTEXT://0.0.0.0:9092
27
27
KAFKA_ZOOKEEPER_CONNECT : zookeeper:2181
28
28
image : wurstmeister/kafka:2.12-2.1.1
29
- ports :
30
- - 9092:9092
31
29
networks :
32
30
- temporal-network
31
+ ports :
32
+ - 9092:9092
33
33
temporal :
34
34
container_name : temporal
35
35
depends_on :
@@ -43,24 +43,24 @@ services:
43
43
- ES_SEEDS=elasticsearch
44
44
- ES_VERSION=v7
45
45
- KAFKA_SEEDS=kafka
46
- image : temporalio/auto-setup:1.5.1
46
+ image : temporalio/auto-setup:1.6.0
47
+ networks :
48
+ - temporal-network
47
49
ports :
48
50
- 7233:7233
49
51
volumes :
50
52
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
51
- networks :
52
- - temporal-network
53
53
temporal-admin-tools :
54
54
container_name : temporal-admin-tools
55
55
depends_on :
56
56
- temporal
57
57
environment :
58
58
- TEMPORAL_CLI_ADDRESS=temporal:7233
59
- image : temporalio/admin-tools:1.5.1
60
- stdin_open : true
61
- tty : true
59
+ image : temporalio/admin-tools:1.6.0
62
60
networks :
63
61
- temporal-network
62
+ stdin_open : true
63
+ tty : true
64
64
temporal-web :
65
65
container_name : temporal-web
66
66
depends_on :
@@ -69,17 +69,17 @@ services:
69
69
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
70
70
- TEMPORAL_PERMIT_WRITE_API=true
71
71
image : temporalio/web:1.5.0
72
- ports :
73
- - 8088:8088
74
72
networks :
75
73
- temporal-network
74
+ ports :
75
+ - 8088:8088
76
76
zookeeper :
77
77
container_name : temporal-zookeper
78
78
image : wurstmeister/zookeeper:3.4.6
79
- ports :
80
- - 2181:2181
81
79
networks :
82
80
- temporal-network
81
+ ports :
82
+ - 2181:2181
83
83
networks :
84
84
temporal-network :
85
85
driver : bridge
0 commit comments