Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
[stable/mongodb-replicaset] Make unguiculus/mongodb-install multiarch…
Browse files Browse the repository at this point in the history
… and include arm platforms (#22322) (#22323)

- also bumped mongodb-install image version number
- bumped chart version number
Signed-off-by: Kris Gandhi <[email protected]>

Co-authored-by: Kris Gandhi <[email protected]>
Co-authored-by: Reinhard Nägele <[email protected]>
  • Loading branch information
3 people authored Jul 7, 2020
1 parent 92cfead commit 1bee666
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion stable/mongodb-replicaset/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v1
name: mongodb-replicaset
home: https://github.com/mongodb/mongo
version: 3.16.0
version: 3.16.1
appVersion: 3.6
description: NoSQL document-oriented database that stores JSON-like documents with
dynamic schemas, simplifying the integration of data in content-driven applications.
Expand Down
12 changes: 5 additions & 7 deletions stable/mongodb-replicaset/install/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,12 @@

all: push

TAG = 0.7
TAG = 0.8
PREFIX = unguiculus/mongodb-install
PLATFORM = linux/amd64,linux/arm/v7,linux/arm64/v8

build:
docker build -t $(PREFIX):$(TAG) .
docker buildx build -t $(PREFIX):$(TAG) --platform $(PLATFORM) .

push: build
docker push $(PREFIX):$(TAG)

clean:
docker rmi $(PREFIX):$(TAG)
push:
docker buildx build -t $(PREFIX):$(TAG) --platform $(PLATFORM) --push .

0 comments on commit 1bee666

Please sign in to comment.