Skip to content

Commit 25678d3

Browse files
author
Gürkan İndibay
authored
Bump docker to version 11.0.6 (#312)
* Bump docker to version 11.0.6 * Updates postgres versions and missing required changes
1 parent 07610fb commit 25678d3

11 files changed

Lines changed: 25 additions & 15 deletions

.github/workflows/publish_docker_images_cron.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v2
2727

2828
- name: Clone tools branch
29-
run: git clone -b v0.8.11 --depth=1 https://github.com/citusdata/tools.git tools
29+
run: git clone -b v0.8.18 --depth=1 https://github.com/citusdata/tools.git tools
3030

3131
- name: Install package dependencies
3232
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources

.github/workflows/publish_docker_images_on_manual.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v2
2727

2828
- name: Clone tools branch
29-
run: git clone -b v0.8.11 --depth=1 https://github.com/citusdata/tools.git tools
29+
run: git clone -b v0.8.18 --depth=1 https://github.com/citusdata/tools.git tools
3030

3131
- name: Install package dependencies
3232
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources

.github/workflows/publish_docker_images_on_push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
uses: actions/checkout@v2
2525

2626
- name: Clone tools branch
27-
run: git clone -b v0.8.11 --depth=1 https://github.com/citusdata/tools.git tools
27+
run: git clone -b v0.8.18 --depth=1 https://github.com/citusdata/tools.git tools
2828

2929
- name: Install package dependencies
3030
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources

.github/workflows/publish_docker_images_on_tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
ref: master
2828

2929
- name: Clone tools branch
30-
run: git clone -b v0.8.11 --depth=1 https://github.com/citusdata/tools.git tools
30+
run: git clone -b v0.8.18 --depth=1 https://github.com/citusdata/tools.git tools
3131

3232
- name: Install package dependencies
3333
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources

.github/workflows/update_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources
2828

2929
- name: Clone tools branch
30-
run: git clone -b v0.8.11 --depth=1 https://github.com/citusdata/tools.git tools
30+
run: git clone -b v0.8.18 --depth=1 https://github.com/citusdata/tools.git tools
3131

3232
- name: Set git name and email
3333
run: |

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
### citus-docker v11.0.6.docker (August 19,2022) ###
2+
3+
* Bump Citus version to 11.0.6
4+
5+
* Bump PostgreSQL 14 version to 14.5
6+
7+
* Bump PostgreSQL 13 version to 13.8
8+
9+
* Bump PostgreSQL 12 version to 12.12
10+
111
### citus-docker v11.0.5.docker (August 01,2022) ###
212

313
* Bump Citus version to 11.0.5

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/latest/latest.tmpl.dockerfile.
3-
FROM postgres:14.4
4-
ARG VERSION=11.0.5
3+
FROM postgres:14.5
4+
ARG VERSION=11.0.6
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \

alpine/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/alpine/alpine.tmpl.dockerfile.
3-
FROM postgres:14.4-alpine
4-
ARG VERSION=11.0.5
3+
FROM postgres:14.5-alpine
4+
ARG VERSION=11.0.6
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: "3"
55
services:
66
master:
77
container_name: "${COMPOSE_PROJECT_NAME:-citus}_master"
8-
image: "citusdata/citus:11.0.5"
8+
image: "citusdata/citus:11.0.6"
99
ports: ["${COORDINATOR_EXTERNAL_PORT:-5432}:5432"]
1010
labels: ["com.citusdata.role=Master"]
1111
environment: &AUTH
@@ -15,7 +15,7 @@ services:
1515
PGPASSWORD: "${POSTGRES_PASSWORD}"
1616
POSTGRES_HOST_AUTH_METHOD: "${POSTGRES_HOST_AUTH_METHOD:-trust}"
1717
worker:
18-
image: "citusdata/citus:11.0.5"
18+
image: "citusdata/citus:11.0.6"
1919
labels: ["com.citusdata.role=Worker"]
2020
depends_on: [manager]
2121
environment: *AUTH

postgres-12/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This file is auto generated from it's template,
22
# see citusdata/tools/packaging_automation/templates/docker/postgres-12/postgres-12.tmpl.dockerfile.
3-
FROM postgres:12.11
4-
ARG VERSION=11.0.5
3+
FROM postgres:12.12
4+
ARG VERSION=11.0.6
55
LABEL maintainer="Citus Data https://citusdata.com" \
66
org.label-schema.name="Citus" \
77
org.label-schema.description="Scalable PostgreSQL for multi-tenant and real-time workloads" \

0 commit comments

Comments
 (0)