Skip to content

Commit 22eb14b

Browse files
author
Gürkan İndibay
authored
Bump docker to version 12.0.0 (#342)
* Bump docker to version 12.0.0 * * Removes Postgres 13 * Updates tools version
1 parent 7b86406 commit 22eb14b

11 files changed

Lines changed: 16 additions & 57 deletions

.github/workflows/publish_docker_images_cron.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,14 @@ jobs:
1919
image_type:
2020
- latest
2121
- alpine
22-
- postgres_13
2322
- postgres_14
2423
- nightly
2524
steps:
2625
- name: Checkout repository
2726
uses: actions/checkout@v3
2827

2928
- name: Clone tools branch
30-
run: git clone -b v0.8.24 --depth=1 https://github.com/citusdata/tools.git tools
29+
run: git clone -b v0.8.27 --depth=1 https://github.com/citusdata/tools.git tools
3130

3231
- name: Install package dependencies
3332
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@v3
2727

2828
- name: Clone tools branch
29-
run: git clone -b v0.8.24 --depth=1 https://github.com/citusdata/tools.git tools
29+
run: git clone -b v0.8.27 --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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
image_type:
1818
- latest
1919
- alpine
20-
- postgres_13
2120
- postgres_14
2221
- nightly
2322
steps:

.github/workflows/publish_docker_images_on_tag.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ jobs:
1717
image_type:
1818
- latest
1919
- alpine
20-
- postgres_13
2120
- postgres_14
2221
- nightly
2322
steps:
@@ -28,7 +27,7 @@ jobs:
2827
ref: master
2928

3029
- name: Clone tools branch
31-
run: git clone -b v0.8.24 --depth=1 https://github.com/citusdata/tools.git tools
30+
run: git clone -b v0.8.27 --depth=1 https://github.com/citusdata/tools.git tools
3231

3332
- name: Install package dependencies
3433
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.24 --depth=1 https://github.com/citusdata/tools.git tools
30+
run: git clone -b v0.8.27 --depth=1 https://github.com/citusdata/tools.git tools
3131

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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### citus-docker v12.0.0.docker (July 17,2023) ###
2+
3+
* Bump Citus version to 12.0.0
4+
15
### citus-docker v11.3.0.docker (May 02,2023) ###
26

37
* Bump Citus version to 11.3.0

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.
33
FROM postgres:15.3
4-
ARG VERSION=11.3.0
4+
ARG VERSION=12.0.0
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" \
@@ -19,7 +19,7 @@ RUN apt-get update \
1919
ca-certificates \
2020
curl \
2121
&& curl -s https://install.citusdata.com/community/deb.sh | bash \
22-
&& apt-get install -y postgresql-$PG_MAJOR-citus-11.3=$CITUS_VERSION \
22+
&& apt-get install -y postgresql-$PG_MAJOR-citus-12.0=$CITUS_VERSION \
2323
postgresql-$PG_MAJOR-hll=2.17.citus-1 \
2424
postgresql-$PG_MAJOR-topn=2.5.0.citus-1 \
2525
&& apt-get purge -y --auto-remove curl \

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:15.2-alpine
4-
ARG VERSION=11.3.0
3+
FROM postgres:15.3-alpine
4+
ARG VERSION=12.0.0
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.3.0"
8+
image: "citusdata/citus:12.0.0"
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.3.0"
18+
image: "citusdata/citus:12.0.0"
1919
labels: ["com.citusdata.role=Worker"]
2020
depends_on: [manager]
2121
environment: *AUTH

postgres-13/Dockerfile

Lines changed: 0 additions & 42 deletions
This file was deleted.

0 commit comments

Comments
 (0)