Tim Windelschmidt | 1fdab13 | 2023-03-30 15:04:16 +0200 | [diff] [blame] | 1 | load("@io_bazel_rules_docker//container:bundle.bzl", "container_bundle") |
| 2 | load("@io_bazel_rules_docker//contrib:push-all.bzl", "container_push") |
| 3 | |
| 4 | container_bundle( |
| 5 | name = "cloud_containers", |
| 6 | images = { |
| 7 | "gcr.io/monogon-infra/cloud/apigw:{IMAGE_TAG}": "//cloud/apigw:apigw_container", |
| 8 | "gcr.io/monogon-infra/cloud/shepherd/equinix:{IMAGE_TAG}": "//cloud/shepherd/equinix/manager/server:server_container", |
Tim Windelschmidt | 739f1d2 | 2023-04-06 13:19:39 +0200 | [diff] [blame] | 9 | "gcr.io/monogon-infra/cloud/bmsrv:{IMAGE_TAG}": "//cloud/bmaas/server/cmd:cmd_container", |
Tim Windelschmidt | a2ee88d | 2023-07-04 14:58:10 +0200 | [diff] [blame] | 10 | "gcr.io/monogon-infra/cloud/scruffy:{IMAGE_TAG}": "//cloud/bmaas/scruffy/cmd:cmd_container", |
Tim Windelschmidt | 1fdab13 | 2023-03-30 15:04:16 +0200 | [diff] [blame] | 11 | }, |
| 12 | ) |
| 13 | |
| 14 | container_push( |
| 15 | name = "push", |
| 16 | bundle = ":cloud_containers", |
| 17 | format = "Docker", |
| 18 | ) |