Skip to content

Commit 72fe5f7

Browse files
authored
Release 1.6.0 (#3)
1 parent 303d3a5 commit 72fe5f7

6 files changed

+64
-64
lines changed

docker-compose-cas-es.yml

+16-16
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,20 @@ services:
33
cassandra:
44
container_name: temporal-cassandra
55
image: cassandra:3.11
6-
ports:
7-
- 9042:9042
86
networks:
97
- temporal-network
8+
ports:
9+
- 9042:9042
1010
elasticsearch:
1111
container_name: temporal-elasticsearch
1212
environment:
1313
- discovery.type=single-node
1414
- ES_JAVA_OPTS=-Xms100m -Xmx100m
1515
image: elasticsearch:7.10.1
16-
ports:
17-
- 9200:9200
1816
networks:
1917
- temporal-network
18+
ports:
19+
- 9200:9200
2020
kafka:
2121
container_name: temporal-kafka
2222
depends_on:
@@ -26,10 +26,10 @@ services:
2626
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
2727
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
2828
image: wurstmeister/kafka:2.12-2.1.1
29-
ports:
30-
- 9092:9092
3129
networks:
3230
- temporal-network
31+
ports:
32+
- 9092:9092
3333
temporal:
3434
container_name: temporal
3535
depends_on:
@@ -43,24 +43,24 @@ services:
4343
- ES_SEEDS=elasticsearch
4444
- ES_VERSION=v7
4545
- KAFKA_SEEDS=kafka
46-
image: temporalio/auto-setup:1.5.1
46+
image: temporalio/auto-setup:1.6.0
47+
networks:
48+
- temporal-network
4749
ports:
4850
- 7233:7233
4951
volumes:
5052
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
51-
networks:
52-
- temporal-network
5353
temporal-admin-tools:
5454
container_name: temporal-admin-tools
5555
depends_on:
5656
- temporal
5757
environment:
5858
- 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
6260
networks:
6361
- temporal-network
62+
stdin_open: true
63+
tty: true
6464
temporal-web:
6565
container_name: temporal-web
6666
depends_on:
@@ -69,17 +69,17 @@ services:
6969
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
7070
- TEMPORAL_PERMIT_WRITE_API=true
7171
image: temporalio/web:1.5.0
72-
ports:
73-
- 8088:8088
7472
networks:
7573
- temporal-network
74+
ports:
75+
- 8088:8088
7676
zookeeper:
7777
container_name: temporal-zookeper
7878
image: wurstmeister/zookeeper:3.4.6
79-
ports:
80-
- 2181:2181
8179
networks:
8280
- temporal-network
81+
ports:
82+
- 2181:2181
8383
networks:
8484
temporal-network:
8585
driver: bridge

docker-compose-cockroach.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ services:
99
container_name: temporal-cockroach
1010
hostname: cockroach
1111
image: cockroachdb/cockroach
12+
networks:
13+
- temporal-network
1214
restart: on-failure:5
1315
security_opt:
1416
- no-new-privileges
1517
tty: false
16-
networks:
17-
- temporal-network
1818
temporal:
1919
container_name: temporal
2020
depends_on:
@@ -26,26 +26,26 @@ services:
2626
- POSTGRES_PWD=
2727
- POSTGRES_SEEDS=postgres
2828
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
29-
image: temporalio/auto-setup:1.5.1
29+
image: temporalio/auto-setup:1.6.0
3030
links:
3131
- cockroach:postgres
32+
networks:
33+
- temporal-network
3234
ports:
3335
- 7233:7233
3436
volumes:
3537
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
36-
networks:
37-
- temporal-network
3838
temporal-admin-tools:
3939
container_name: temporal-admin-tools
4040
depends_on:
4141
- temporal
4242
environment:
4343
- TEMPORAL_CLI_ADDRESS=temporal:7233
44-
image: temporalio/admin-tools:1.5.1
45-
stdin_open: true
46-
tty: true
44+
image: temporalio/admin-tools:1.6.0
4745
networks:
4846
- temporal-network
47+
stdin_open: true
48+
tty: true
4949
temporal-web:
5050
container_name: temporal-web
5151
depends_on:
@@ -54,10 +54,10 @@ services:
5454
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
5555
- TEMPORAL_PERMIT_WRITE_API=true
5656
image: temporalio/web:1.5.0
57-
ports:
58-
- 8088:8088
5957
networks:
6058
- temporal-network
59+
ports:
60+
- 8088:8088
6161
networks:
6262
temporal-network:
6363
driver: bridge

docker-compose-mysql-es.yml

+16-16
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ services:
66
- discovery.type=single-node
77
- ES_JAVA_OPTS=-Xms100m -Xmx100m
88
image: elasticsearch:7.10.1
9-
ports:
10-
- 9200:9200
119
networks:
1210
- temporal-network
11+
ports:
12+
- 9200:9200
1313
kafka:
1414
container_name: temporal-kafka
1515
depends_on:
@@ -19,19 +19,19 @@ services:
1919
KAFKA_LISTENERS: PLAINTEXT://0.0.0.0:9092
2020
KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
2121
image: wurstmeister/kafka:2.12-2.1.1
22-
ports:
23-
- 9092:9092
2422
networks:
2523
- temporal-network
24+
ports:
25+
- 9092:9092
2626
mysql:
2727
container_name: temporal-mysql
2828
environment:
2929
- MYSQL_ROOT_PASSWORD=root
3030
image: mysql:5.7
31-
ports:
32-
- 3306:3306
3331
networks:
3432
- temporal-network
33+
ports:
34+
- 3306:3306
3535
temporal:
3636
container_name: temporal
3737
depends_on:
@@ -48,42 +48,42 @@ services:
4848
- ES_SEEDS=elasticsearch
4949
- ES_VERSION=v7
5050
- KAFKA_SEEDS=kafka
51-
image: temporalio/auto-setup:1.5.1
51+
image: temporalio/auto-setup:1.6.0
52+
networks:
53+
- temporal-network
5254
ports:
5355
- 7233:7233
5456
volumes:
5557
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
56-
networks:
57-
- temporal-network
5858
temporal-admin-tools:
5959
container_name: temporal-admin-tools
6060
depends_on:
6161
- temporal
6262
environment:
6363
- TEMPORAL_CLI_ADDRESS=temporal:7233
64-
image: temporalio/admin-tools:1.5.1
65-
stdin_open: true
66-
tty: true
64+
image: temporalio/admin-tools:1.6.0
6765
networks:
6866
- temporal-network
67+
stdin_open: true
68+
tty: true
6969
temporal-web:
7070
container_name: temporal-web
7171
depends_on:
7272
- temporal
7373
environment:
7474
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
7575
image: temporalio/web:1.5.0
76-
ports:
77-
- 8088:8088
7876
networks:
7977
- temporal-network
78+
ports:
79+
- 8088:8088
8080
zookeeper:
8181
container_name: temporal-zookeeper
8282
image: wurstmeister/zookeeper:3.4.6
83-
ports:
84-
- 2181:2181
8583
networks:
8684
- temporal-network
85+
ports:
86+
- 2181:2181
8787
networks:
8888
temporal-network:
8989
driver: bridge

docker-compose-mysql.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ services:
55
environment:
66
- MYSQL_ROOT_PASSWORD=root
77
image: mysql:5.7
8-
ports:
9-
- 3306:3306
108
networks:
119
- temporal-network
10+
ports:
11+
- 3306:3306
1212
temporal:
1313
container_name: temporal
1414
depends_on:
@@ -20,24 +20,24 @@ services:
2020
- MYSQL_PWD=root
2121
- MYSQL_SEEDS=mysql
2222
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
23-
image: temporalio/auto-setup:1.5.1
23+
image: temporalio/auto-setup:1.6.0
24+
networks:
25+
- temporal-network
2426
ports:
2527
- 7233:7233
2628
volumes:
2729
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
28-
networks:
29-
- temporal-network
3030
temporal-admin-tools:
3131
container_name: temporal-admin-tools
3232
depends_on:
3333
- temporal
3434
environment:
3535
- TEMPORAL_CLI_ADDRESS=temporal:7233
36-
image: temporalio/admin-tools:1.5.1
37-
stdin_open: true
38-
tty: true
36+
image: temporalio/admin-tools:1.6.0
3937
networks:
4038
- temporal-network
39+
stdin_open: true
40+
tty: true
4141
temporal-web:
4242
container_name: temporal-web
4343
depends_on:
@@ -46,10 +46,10 @@ services:
4646
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
4747
- TEMPORAL_PERMIT_WRITE_API=true
4848
image: temporalio/web:1.5.0
49-
ports:
50-
- 8088:8088
5149
networks:
5250
- temporal-network
51+
ports:
52+
- 8088:8088
5353
networks:
5454
temporal-network:
5555
driver: bridge

docker-compose-postgres.yml

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ services:
66
POSTGRES_PASSWORD: temporal
77
POSTGRES_USER: temporal
88
image: postgres:9.6
9-
ports:
10-
- 5432:5432
119
networks:
1210
- temporal-network
11+
ports:
12+
- 5432:5432
1313
temporal:
1414
container_name: temporal
1515
depends_on:
@@ -21,24 +21,24 @@ services:
2121
- POSTGRES_PWD=temporal
2222
- POSTGRES_SEEDS=postgresql
2323
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
24-
image: temporalio/auto-setup:1.5.1
24+
image: temporalio/auto-setup:1.6.0
25+
networks:
26+
- temporal-network
2527
ports:
2628
- 7233:7233
2729
volumes:
2830
- ./dynamicconfig:/etc/temporal/config/dynamicconfig
29-
networks:
30-
- temporal-network
3131
temporal-admin-tools:
3232
container_name: temporal-admin-tools
3333
depends_on:
3434
- temporal
3535
environment:
3636
- TEMPORAL_CLI_ADDRESS=temporal:7233
37-
image: temporalio/admin-tools:1.5.1
38-
stdin_open: true
39-
tty: true
37+
image: temporalio/admin-tools:1.6.0
4038
networks:
4139
- temporal-network
40+
stdin_open: true
41+
tty: true
4242
temporal-web:
4343
container_name: temporal-web
4444
depends_on:
@@ -47,10 +47,10 @@ services:
4747
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
4848
- TEMPORAL_PERMIT_WRITE_API=true
4949
image: temporalio/web:1.5.0
50-
ports:
51-
- 8088:8088
5250
networks:
5351
- temporal-network
52+
ports:
53+
- 8088:8088
5454
networks:
5555
temporal-network:
5656
driver: bridge

docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414
environment:
1515
- CASSANDRA_SEEDS=cassandra
1616
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
17-
image: temporalio/auto-setup:1.5.1
17+
image: temporalio/auto-setup:1.6.0
1818
networks:
1919
- temporal-network
2020
ports:
@@ -27,7 +27,7 @@ services:
2727
- temporal
2828
environment:
2929
- TEMPORAL_CLI_ADDRESS=temporal:7233
30-
image: temporalio/admin-tools:1.5.1
30+
image: temporalio/admin-tools:1.6.0
3131
networks:
3232
- temporal-network
3333
stdin_open: true

0 commit comments

Comments
 (0)