Docker-S3DB/bake.hcl

25 lines
458 B
HCL
Raw Normal View History

2022-08-23 12:29:35 +00:00
# docker-bake.dev.hcl
group "default" {
targets = ["postgres-14", "postgres-13"]
}
target "postgres-14" {
context = "."
dockerfile = "Dockerfile"
platforms = ["arm64","amd64"]
tags = ["benzine/postgres:14", "benzine/postgres:latest"]
args = {
PGSQL_VERSION = 14
}
}
target "postgres-13" {
context = "."
dockerfile = "Dockerfile"
platforms = ["arm64","amd64"]
2022-08-23 12:29:49 +00:00
tags = ["benzine/postgres:13"]
2022-08-23 12:29:35 +00:00
args = {
PGSQL_VERSION = 13
}
}