Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,28 +61,28 @@ jobs:
uses: docker/build-push-action@v2
with:
build-args: |
PG_VERSION=14.6
PG_VERSION=14.8
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./Dockerfile
push: true
tags: |
flyio/postgres:14
flyio/postgres:14.6
flyio/postgres:14.8
-
name: Build and push TimescaleDB 14
id: docker_build_ts_14
uses: docker/build-push-action@v2
with:
build-args: |
PG_VERSION=14.6
PG_VERSION=14.8
VERSION=${{ steps.get-latest-tag.outputs.tag }}
context: .
file: ./Dockerfile-timescaledb
push: true
tags: |
flyio/postgres-timescaledb:14
flyio/postgres-timescaledb:14.6
flyio/postgres-timescaledb:14.8
-
name: Postgres 12 Image digest
run: echo ${{ steps.docker_build.outputs.digest }}
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=14.4
ARG PG_VERSION=14.8
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It was released as 14.6, but seems to have actually remained at 14.4. Maybe that was intentional though.

ARG VERSION=custom

FROM golang:1.16 as flyutil
Expand All @@ -23,7 +23,7 @@ FROM flyio/stolon:327008e as stolon
FROM wrouesnel/postgres_exporter:latest AS postgres_exporter

FROM postgres:${PG_VERSION}
ARG VERSION
ARG VERSION
ARG POSTGIS_MAJOR=3
ARG WALG_VERSION=2.0.0

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile-timescaledb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG PG_VERSION=14.6
ARG PG_VERSION=14.8
ARG VERSION=custom

FROM golang:1.16 as flyutil
Expand All @@ -23,7 +23,7 @@ FROM flyio/stolon:327008e as stolon
FROM wrouesnel/postgres_exporter:latest AS postgres_exporter

FROM postgres:${PG_VERSION}
ARG VERSION
ARG VERSION
ARG POSTGIS_MAJOR=3
ARG WALG_VERSION=2.0.0

Expand Down