Skip to content

Commit

Permalink
chore: upgrade pg-backup base image
Browse files Browse the repository at this point in the history
  • Loading branch information
this-is-tobi committed Feb 17, 2025
1 parent 3318178 commit d5d93be
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ __Versions correlation table :__
| debug | 2.1.0 | `docker.io/debian:12` |
| dev | 2.0.2 | `docker.io/debian:12` |
| homelab-utils | 0.2.0 | `docker.io/alpine:3.21.3` |
| pg-backup | 3.0.2 | `docker.io/postgres:17.2` |
| pg-backup | 2.0.2 | `docker.io/postgres:16.6` |
| pg-backup | 1.4.5 | `docker.io/postgres:15.10` |
| pg-backup | 3.1.0 | `docker.io/postgres:17.3` |
| pg-backup | 2.1.0 | `docker.io/postgres:16.7` |
| pg-backup | 1.4.0 | `docker.io/postgres:15.11` |
| s3-backup | 1.1.4 | `docker.io/debian:12` |
| vault-backup | 1.3.0 | `docker.io/hashicorp/vault:1.18.4` |

Expand Down
12 changes: 6 additions & 6 deletions ci/matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,33 +57,33 @@
{
"name": "pg-backup",
"build": {
"base": "docker.io/postgres:15.10",
"base": "docker.io/postgres:15.11",
"context": "./docker/pg-backup",
"dockerfile": "./docker/pg-backup/Dockerfile",
"target": "build",
"tag": "1.4.5",
"tag": "1.5.0",
"latest": false
}
},
{
"name": "pg-backup",
"build": {
"base": "docker.io/postgres:16.6",
"base": "docker.io/postgres:16.7",
"context": "./docker/pg-backup",
"dockerfile": "./docker/pg-backup/Dockerfile",
"target": "build",
"tag": "2.0.2",
"tag": "2.1.0",
"latest": false
}
},
{
"name": "pg-backup",
"build": {
"base": "docker.io/postgres:17.2",
"base": "docker.io/postgres:17.3",
"context": "./docker/pg-backup",
"dockerfile": "./docker/pg-backup/Dockerfile",
"target": "build",
"tag": "3.0.2",
"tag": "3.1.0",
"latest": true
}
},
Expand Down
2 changes: 1 addition & 1 deletion docker/pg-backup/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG BASE_IMAGE=docker.io/postgres:17.2
ARG BASE_IMAGE=docker.io/postgres:17.3

FROM ${BASE_IMAGE} AS build

Expand Down

0 comments on commit d5d93be

Please sign in to comment.