Skip to content

Commit

Permalink
chore: upgrade pg-backup base docker image
Browse files Browse the repository at this point in the history
  • Loading branch information
this-is-tobi committed Mar 6, 2025
1 parent 7efbcd6 commit 682f65c
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 @@ -46,9 +46,9 @@ __Versions correlation table :__
| dev | 2.0.2 | `docker.io/debian:12` |
| homelab-utils | 0.2.0 | `docker.io/alpine:3.21.3` |
| mc | 1.0.1 | `docker.io/alpine:3.21.3` |
| pg-backup | 3.2.0 | `docker.io/postgres:17.3` |
| pg-backup | 2.2.0 | `docker.io/postgres:16.7` |
| pg-backup | 1.6.0 | `docker.io/postgres:15.11` |
| pg-backup | 3.3.0 | `docker.io/postgres:17.4` |
| pg-backup | 2.3.0 | `docker.io/postgres:16.8` |
| pg-backup | 1.7.0 | `docker.io/postgres:15.12` |
| s3-backup | 1.2.0 | `docker.io/debian:12` |
| vault-backup | 1.5.0 | `docker.io/hashicorp/vault:1.19.0` |

Expand Down
12 changes: 6 additions & 6 deletions ci/matrix.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,33 +68,33 @@
{
"name": "pg-backup",
"build": {
"base": "docker.io/postgres:15.11",
"base": "docker.io/postgres:15.12",
"context": "./docker/pg-backup",
"dockerfile": "./docker/pg-backup/Dockerfile",
"target": "build",
"tag": "1.6.0",
"tag": "1.7.0",
"latest": false
}
},
{
"name": "pg-backup",
"build": {
"base": "docker.io/postgres:16.7",
"base": "docker.io/postgres:16.8",
"context": "./docker/pg-backup",
"dockerfile": "./docker/pg-backup/Dockerfile",
"target": "build",
"tag": "2.2.0",
"tag": "2.3.0",
"latest": false
}
},
{
"name": "pg-backup",
"build": {
"base": "docker.io/postgres:17.3",
"base": "docker.io/postgres:17.4",
"context": "./docker/pg-backup",
"dockerfile": "./docker/pg-backup/Dockerfile",
"target": "build",
"tag": "3.2.0",
"tag": "3.3.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.3
ARG BASE_IMAGE=docker.io/postgres:17.4

FROM ${BASE_IMAGE} AS build

Expand Down

0 comments on commit 682f65c

Please sign in to comment.