We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 78bc835 + 5597982 commit 02ab5e5Copy full SHA for 02ab5e5
1 file changed
Makefile
@@ -12,6 +12,9 @@
12
# limitations under the License.
13
14
# Needs to be defined before including Makefile.common to auto-generate targets
15
+
16
+IMG ?= quay.io/openstack-k8s-operators/mysqld-exporter:latest
17
18
DOCKER_ARCHS ?= amd64 armv7 arm64
19
20
all: vet
@@ -28,3 +31,11 @@ test-docker-single-exporter:
28
31
./test_image.sh "$(DOCKER_IMAGE_NAME):$(DOCKER_IMAGE_TAG)" 9104
29
32
30
33
.PHONY: test-docker
34
35
+.PHONY: docker-build
36
+docker-build: ## Build container image
37
+ podman build -t ${IMG} -f Containerfile .
38
39
+.PHONY: docker-push
40
+docker-push: ## Push container image
41
+ podman push ${IMG}
0 commit comments