diff --git a/docker-bake.hcl b/docker-bake.hcl index 2ec937e..95963a8 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -1,5 +1,5 @@ group "default" { - targets = ["debian-latest", "alpine-latest", "debian-13", "debian-12", "debian-11", "debian-10", "debian-9.6", "alpine-13", "alpine-12", "alpine-11", "alpine-10", "alpine-9.6"] + targets = ["debian-latest", "alpine-latest", "debian-13", "debian-12", "debian-11", "debian-10", "alpine-13", "alpine-12", "alpine-11", "alpine-10"] } variable "BUILDREV" { @@ -112,21 +112,3 @@ target "alpine-10" { notequal("", BUILDREV) ? "prodrigestivill/postgres-backup-local:10-alpine-${BUILDREV}" : "" ] } - -target "debian-9.6" { - inherits = ["debian"] - args = {"BASETAG" = "9.6"} - tags = [ - "prodrigestivill/postgres-backup-local:9.6", - notequal("", BUILDREV) ? "prodrigestivill/postgres-backup-local:9.6-debian-${BUILDREV}" : "" - ] -} - -target "alpine-9.6" { - inherits = ["alpine"] - args = {"BASETAG" = "9.6-alpine"} - tags = [ - "prodrigestivill/postgres-backup-local:9.6-alpine", - notequal("", BUILDREV) ? "prodrigestivill/postgres-backup-local:9.6-alpine-${BUILDREV}" : "" - ] -} diff --git a/generate.sh b/generate.sh index 722325c..7d70e13 100755 --- a/generate.sh +++ b/generate.sh @@ -3,7 +3,7 @@ set -e DOCKER_BAKE_FILE=${1:-"docker-bake.hcl"} -TAGS=${TAGS:-"14 13 12 11 10 9.6"} +TAGS=${TAGS:-"14 13 12 11 10"} GOCRONVER=${GOCRONVER:-"v0.0.10"} PLATFORMS=${PLATFORMS:-"linux/amd64 linux/arm64 linux/arm/v7 linux/s390x linux/ppc64le"} IMAGE_NAME=${IMAGE_NAME:-"prodrigestivill/postgres-backup-local"}