mirror of
https://github.com/prodrigestivill/docker-postgres-backup-local.git
synced 2026-07-10 20:27:51 +00:00
Fix hcl indent
This commit is contained in:
+20
-20
@@ -30,61 +30,61 @@ target "alpine-latest" {
|
|||||||
}
|
}
|
||||||
|
|
||||||
target "debian-12" {
|
target "debian-12" {
|
||||||
inherits = ["debian"]
|
inherits = ["debian"]
|
||||||
args = {"BASETAG" = "12"}
|
args = {"BASETAG" = "12"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:12"]
|
tags = ["prodrigestivill/postgres-backup-local:12"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "alpine-12" {
|
target "alpine-12" {
|
||||||
inherits = ["alpine"]
|
inherits = ["alpine"]
|
||||||
args = {"BASETAG" = "12-alpine"}
|
args = {"BASETAG" = "12-alpine"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:12-alpine"]
|
tags = ["prodrigestivill/postgres-backup-local:12-alpine"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "debian-11" {
|
target "debian-11" {
|
||||||
inherits = ["debian"]
|
inherits = ["debian"]
|
||||||
args = {"BASETAG" = "11"}
|
args = {"BASETAG" = "11"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:11"]
|
tags = ["prodrigestivill/postgres-backup-local:11"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "alpine-11" {
|
target "alpine-11" {
|
||||||
inherits = ["alpine"]
|
inherits = ["alpine"]
|
||||||
args = {"BASETAG" = "11-alpine"}
|
args = {"BASETAG" = "11-alpine"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:11-alpine"]
|
tags = ["prodrigestivill/postgres-backup-local:11-alpine"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "debian-10" {
|
target "debian-10" {
|
||||||
inherits = ["debian"]
|
inherits = ["debian"]
|
||||||
args = {"BASETAG" = "10"}
|
args = {"BASETAG" = "10"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:10"]
|
tags = ["prodrigestivill/postgres-backup-local:10"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "alpine-10" {
|
target "alpine-10" {
|
||||||
inherits = ["alpine"]
|
inherits = ["alpine"]
|
||||||
args = {"BASETAG" = "10-alpine"}
|
args = {"BASETAG" = "10-alpine"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:10-alpine"]
|
tags = ["prodrigestivill/postgres-backup-local:10-alpine"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "debian-9.6" {
|
target "debian-9.6" {
|
||||||
inherits = ["debian"]
|
inherits = ["debian"]
|
||||||
args = {"BASETAG" = "9.6"}
|
args = {"BASETAG" = "9.6"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:9.6"]
|
tags = ["prodrigestivill/postgres-backup-local:9.6"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "alpine-9.6" {
|
target "alpine-9.6" {
|
||||||
inherits = ["alpine"]
|
inherits = ["alpine"]
|
||||||
args = {"BASETAG" = "9.6-alpine"}
|
args = {"BASETAG" = "9.6-alpine"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:9.6-alpine"]
|
tags = ["prodrigestivill/postgres-backup-local:9.6-alpine"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "debian-9.5" {
|
target "debian-9.5" {
|
||||||
inherits = ["debian"]
|
inherits = ["debian"]
|
||||||
args = {"BASETAG" = "9.5"}
|
args = {"BASETAG" = "9.5"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:9.5"]
|
tags = ["prodrigestivill/postgres-backup-local:9.5"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "alpine-9.5" {
|
target "alpine-9.5" {
|
||||||
inherits = ["alpine"]
|
inherits = ["alpine"]
|
||||||
args = {"BASETAG" = "9.5-alpine"}
|
args = {"BASETAG" = "9.5-alpine"}
|
||||||
tags = ["prodrigestivill/postgres-backup-local:9.5-alpine"]
|
tags = ["prodrigestivill/postgres-backup-local:9.5-alpine"]
|
||||||
}
|
}
|
||||||
|
|||||||
+4
-4
@@ -52,15 +52,15 @@ EOF
|
|||||||
for TAG in $TAGS_EXTRA; do cat >> "$DOCKER_BAKE_FILE" << EOF
|
for TAG in $TAGS_EXTRA; do cat >> "$DOCKER_BAKE_FILE" << EOF
|
||||||
|
|
||||||
target "debian-$TAG" {
|
target "debian-$TAG" {
|
||||||
inherits = ["debian"]
|
inherits = ["debian"]
|
||||||
args = {"BASETAG" = "$TAG"}
|
args = {"BASETAG" = "$TAG"}
|
||||||
tags = ["$IMAGE_NAME:$TAG"]
|
tags = ["$IMAGE_NAME:$TAG"]
|
||||||
}
|
}
|
||||||
|
|
||||||
target "alpine-$TAG" {
|
target "alpine-$TAG" {
|
||||||
inherits = ["alpine"]
|
inherits = ["alpine"]
|
||||||
args = {"BASETAG" = "$TAG-alpine"}
|
args = {"BASETAG" = "$TAG-alpine"}
|
||||||
tags = ["$IMAGE_NAME:$TAG-alpine"]
|
tags = ["$IMAGE_NAME:$TAG-alpine"]
|
||||||
}
|
}
|
||||||
EOF
|
EOF
|
||||||
done
|
done
|
||||||
|
|||||||
Reference in New Issue
Block a user