Skip to content

Commit ff95bcd

Browse files
authored
Release v1.11.4 (#42)
1 parent 30a8a92 commit ff95bcd

8 files changed

+35
-39
lines changed

docker-compose-cas-es.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ services:
1010
elasticsearch:
1111
container_name: temporal-elasticsearch
1212
environment:
13-
# Set storage limit to low number.
1413
- cluster.routing.allocation.disk.threshold_enabled=true
1514
- cluster.routing.allocation.disk.watermark.low=512mb
1615
- cluster.routing.allocation.disk.watermark.high=256mb
@@ -33,7 +32,7 @@ services:
3332
- ENABLE_ES=true
3433
- ES_SEEDS=elasticsearch
3534
- ES_VERSION=v7
36-
image: temporalio/auto-setup:1.11.3
35+
image: temporalio/auto-setup:1.11.4
3736
networks:
3837
- temporal-network
3938
ports:
@@ -46,7 +45,7 @@ services:
4645
- temporal
4746
environment:
4847
- TEMPORAL_CLI_ADDRESS=temporal:7233
49-
image: temporalio/admin-tools:1.11.3
48+
image: temporalio/admin-tools:1.11.4
5049
networks:
5150
- temporal-network
5251
stdin_open: true

docker-compose-cas.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.11.3
17+
image: temporalio/auto-setup:1.11.4
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.11.3
30+
image: temporalio/admin-tools:1.11.4
3131
networks:
3232
- temporal-network
3333
stdin_open: true

docker-compose-cockroach-es.yml

+2-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ services:
1818
elasticsearch:
1919
container_name: temporal-elasticsearch
2020
environment:
21-
# Set storage limit to low number.
2221
- cluster.routing.allocation.disk.threshold_enabled=true
2322
- cluster.routing.allocation.disk.watermark.low=512mb
2423
- cluster.routing.allocation.disk.watermark.high=256mb
@@ -45,7 +44,7 @@ services:
4544
- ENABLE_ES=true
4645
- ES_SEEDS=elasticsearch
4746
- ES_VERSION=v7
48-
image: temporalio/auto-setup:1.11.3
47+
image: temporalio/auto-setup:1.11.4
4948
links:
5049
- cockroach:postgres
5150
networks:
@@ -60,7 +59,7 @@ services:
6059
- temporal
6160
environment:
6261
- TEMPORAL_CLI_ADDRESS=temporal:7233
63-
image: temporalio/admin-tools:1.11.3
62+
image: temporalio/admin-tools:1.11.4
6463
networks:
6564
- temporal-network
6665
stdin_open: true

docker-compose-cockroach.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ services:
2626
- POSTGRES_PWD=
2727
- POSTGRES_SEEDS=postgres
2828
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
29-
image: temporalio/auto-setup:1.11.3
29+
image: temporalio/auto-setup:1.11.4
3030
links:
3131
- cockroach:postgres
3232
networks:
@@ -41,7 +41,7 @@ services:
4141
- temporal
4242
environment:
4343
- TEMPORAL_CLI_ADDRESS=temporal:7233
44-
image: temporalio/admin-tools:1.11.3
44+
image: temporalio/admin-tools:1.11.4
4545
networks:
4646
- temporal-network
4747
stdin_open: true

docker-compose-mysql-es.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,8 @@
11
version: "3.5"
22
services:
3-
mysql:
4-
container_name: temporal-mysql
5-
environment:
6-
- MYSQL_ROOT_PASSWORD=root
7-
image: mysql:5.7
8-
networks:
9-
- temporal-network
10-
ports:
11-
- 3306:3306
123
elasticsearch:
134
container_name: temporal-elasticsearch
145
environment:
15-
# Set storage limit to low number.
166
- cluster.routing.allocation.disk.threshold_enabled=true
177
- cluster.routing.allocation.disk.watermark.low=512mb
188
- cluster.routing.allocation.disk.watermark.high=256mb
@@ -24,6 +14,15 @@ services:
2414
- temporal-network
2515
ports:
2616
- 9200:9200
17+
mysql:
18+
container_name: temporal-mysql
19+
environment:
20+
- MYSQL_ROOT_PASSWORD=root
21+
image: mysql:5.7
22+
networks:
23+
- temporal-network
24+
ports:
25+
- 3306:3306
2726
temporal:
2827
container_name: temporal
2928
depends_on:
@@ -38,7 +37,7 @@ services:
3837
- ENABLE_ES=true
3938
- ES_SEEDS=elasticsearch
4039
- ES_VERSION=v7
41-
image: temporalio/auto-setup:1.11.3
40+
image: temporalio/auto-setup:1.11.4
4241
networks:
4342
- temporal-network
4443
ports:
@@ -51,7 +50,7 @@ services:
5150
- temporal
5251
environment:
5352
- TEMPORAL_CLI_ADDRESS=temporal:7233
54-
image: temporalio/admin-tools:1.11.3
53+
image: temporalio/admin-tools:1.11.4
5554
networks:
5655
- temporal-network
5756
stdin_open: true

docker-compose-mysql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
- MYSQL_PWD=root
2121
- MYSQL_SEEDS=mysql
2222
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
23-
image: temporalio/auto-setup:1.11.3
23+
image: temporalio/auto-setup:1.11.4
2424
networks:
2525
- temporal-network
2626
ports:
@@ -33,7 +33,7 @@ services:
3333
- temporal
3434
environment:
3535
- TEMPORAL_CLI_ADDRESS=temporal:7233
36-
image: temporalio/admin-tools:1.11.3
36+
image: temporalio/admin-tools:1.11.4
3737
networks:
3838
- temporal-network
3939
stdin_open: true

docker-compose-postgres.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
- POSTGRES_PWD=temporal
2222
- POSTGRES_SEEDS=postgresql
2323
- DYNAMIC_CONFIG_FILE_PATH=config/dynamicconfig/development.yaml
24-
image: temporalio/auto-setup:1.11.3
24+
image: temporalio/auto-setup:1.11.4
2525
networks:
2626
- temporal-network
2727
ports:
@@ -34,7 +34,7 @@ services:
3434
- temporal
3535
environment:
3636
- TEMPORAL_CLI_ADDRESS=temporal:7233
37-
image: temporalio/admin-tools:1.11.3
37+
image: temporalio/admin-tools:1.11.4
3838
networks:
3939
- temporal-network
4040
stdin_open: true

docker-compose.yml

+12-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
11
version: "3.5"
22
services:
3-
postgresql:
4-
container_name: temporal-postgresql
5-
environment:
6-
POSTGRES_PASSWORD: temporal
7-
POSTGRES_USER: temporal
8-
image: postgres:9.6
9-
networks:
10-
- temporal-network
11-
ports:
12-
- 5432:5432
133
elasticsearch:
144
container_name: temporal-elasticsearch
155
environment:
16-
# Set storage limit to low number.
176
- cluster.routing.allocation.disk.threshold_enabled=true
187
- cluster.routing.allocation.disk.watermark.low=512mb
198
- cluster.routing.allocation.disk.watermark.high=256mb
@@ -25,6 +14,16 @@ services:
2514
- temporal-network
2615
ports:
2716
- 9200:9200
17+
postgresql:
18+
container_name: temporal-postgresql
19+
environment:
20+
POSTGRES_PASSWORD: temporal
21+
POSTGRES_USER: temporal
22+
image: postgres:9.6
23+
networks:
24+
- temporal-network
25+
ports:
26+
- 5432:5432
2827
temporal:
2928
container_name: temporal
3029
depends_on:
@@ -40,7 +39,7 @@ services:
4039
- ENABLE_ES=true
4140
- ES_SEEDS=elasticsearch
4241
- ES_VERSION=v7
43-
image: temporalio/auto-setup:1.11.3
42+
image: temporalio/auto-setup:1.11.4
4443
networks:
4544
- temporal-network
4645
ports:
@@ -53,7 +52,7 @@ services:
5352
- temporal
5453
environment:
5554
- TEMPORAL_CLI_ADDRESS=temporal:7233
56-
image: temporalio/admin-tools:1.11.3
55+
image: temporalio/admin-tools:1.11.4
5756
networks:
5857
- temporal-network
5958
stdin_open: true

0 commit comments

Comments
 (0)