Added Postgres 13 #35

This commit is contained in:
Pau Rodriguez-Estivill
2020-10-01 15:07:06 +02:00
parent 7858b93f77
commit 0686998b92
2 changed files with 17 additions and 5 deletions
+16 -4
View File
@@ -1,5 +1,5 @@
group "default" { group "default" {
targets = ["debian-latest", "alpine-latest", "debian-11", "debian-10", "debian-9.6", "debian-9.5", "alpine-11", "alpine-10", "alpine-9.6", "alpine-9.5"] targets = ["debian-latest", "alpine-latest", "debian-12", "debian-11", "debian-10", "debian-9.6", "debian-9.5", "alpine-12", "alpine-11", "alpine-10", "alpine-9.6", "alpine-9.5"]
} }
target "common" { target "common" {
@@ -19,14 +19,26 @@ target "alpine" {
target "debian-latest" { target "debian-latest" {
inherits = ["debian"] inherits = ["debian"]
args = {"BASETAG" = "12"} args = {"BASETAG" = "13"}
tags = ["prodrigestivill/postgres-backup-local:latest", "prodrigestivill/postgres-backup-local:12"] tags = ["prodrigestivill/postgres-backup-local:latest", "prodrigestivill/postgres-backup-local:13"]
} }
target "alpine-latest" { target "alpine-latest" {
inherits = ["alpine"] inherits = ["alpine"]
args = {"BASETAG" = "13-alpine"}
tags = ["prodrigestivill/postgres-backup-local:alpine", "prodrigestivill/postgres-backup-local:13-alpine"]
}
target "debian-12" {
inherits = ["debian"]
args = {"BASETAG" = "12"}
tags = ["prodrigestivill/postgres-backup-local:12"]
}
target "alpine-12" {
inherits = ["alpine"]
args = {"BASETAG" = "12-alpine"} args = {"BASETAG" = "12-alpine"}
tags = ["prodrigestivill/postgres-backup-local:alpine", "prodrigestivill/postgres-backup-local:12-alpine"] tags = ["prodrigestivill/postgres-backup-local:12-alpine"]
} }
target "debian-11" { target "debian-11" {
+1 -1
View File
@@ -3,7 +3,7 @@
set -e set -e
DOCKER_BAKE_FILE=${1:-"docker-bake.hcl"} DOCKER_BAKE_FILE=${1:-"docker-bake.hcl"}
TAGS=${TAGS:-"12 11 10 9.6 9.5"} TAGS=${TAGS:-"13 12 11 10 9.6 9.5"}
GOCRONVER=${GOCRONVER:-"v0.0.9"} GOCRONVER=${GOCRONVER:-"v0.0.9"}
PLATFORMS=${PLATFORMS:-"linux/amd64 linux/arm64 linux/arm/v7"} PLATFORMS=${PLATFORMS:-"linux/amd64 linux/arm64 linux/arm/v7"}
IMAGE_NAME=${IMAGE_NAME:-"prodrigestivill/postgres-backup-local"} IMAGE_NAME=${IMAGE_NAME:-"prodrigestivill/postgres-backup-local"}