Skip to content

Commit cb9dc3e

Browse files
authored
build the image for this repo: 'https://hub.docker.com/r/mongodb/mongo-cxx-driver' (#1029)
1 parent ea59e7d commit cb9dc3e

File tree

10 files changed

+20
-20
lines changed

10 files changed

+20
-20
lines changed

extras/docker/Makefile.j2

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@ DOCKER=docker
44
.PHONY: build
55
build:
66
$(DOCKER) build . \
7-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-{{ distro }}
7+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-{{ distro }}
88

99
.PHONY: nocachebuild
1010
nocachebuild:
1111
$(DOCKER) build . \
1212
--no-cache \
13-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-{{ distro }}
13+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-{{ distro }}
1414

1515
.PHONY: run
1616
run: | $(filter nocachebuild build, $(MAKECMDGOALS))
17-
$(DOCKER) run --rm -it mongo-cxx-driver:$(MONGOCXX_VERSION)-{{ distro }}
17+
$(DOCKER) run --rm -it mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-{{ distro }}
1818

1919
.PHONY: test
2020
test: | $(filter nocachebuild build, $(MAKECMDGOALS))

extras/docker/TestDockerfile.j2

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mongo-cxx-driver:3.8.0-{{ distro }}
1+
FROM mongodb/mongo-cxx-driver:3.8.0-{{ distro }}
22

33
WORKDIR /build
44

extras/docker/alpine3.18/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ DOCKER=docker
77
.PHONY: build
88
build:
99
$(DOCKER) build . \
10-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-alpine3.18
10+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-alpine3.18
1111

1212
.PHONY: nocachebuild
1313
nocachebuild:
1414
$(DOCKER) build . \
1515
--no-cache \
16-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-alpine3.18
16+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-alpine3.18
1717

1818
.PHONY: run
1919
run: | $(filter nocachebuild build, $(MAKECMDGOALS))
20-
$(DOCKER) run --rm -it mongo-cxx-driver:$(MONGOCXX_VERSION)-alpine3.18
20+
$(DOCKER) run --rm -it mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-alpine3.18
2121

2222
.PHONY: test
2323
test: | $(filter nocachebuild build, $(MAKECMDGOALS))

extras/docker/alpine3.18/TestDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file TestDockerfile.j2 using the generate.py script
33

4-
FROM mongo-cxx-driver:3.8.0-alpine3.18
4+
FROM mongodb/mongo-cxx-driver:3.8.0-alpine3.18
55

66
WORKDIR /build
77

extras/docker/bookworm/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ DOCKER=docker
77
.PHONY: build
88
build:
99
$(DOCKER) build . \
10-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-bookworm
10+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-bookworm
1111

1212
.PHONY: nocachebuild
1313
nocachebuild:
1414
$(DOCKER) build . \
1515
--no-cache \
16-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-bookworm
16+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-bookworm
1717

1818
.PHONY: run
1919
run: | $(filter nocachebuild build, $(MAKECMDGOALS))
20-
$(DOCKER) run --rm -it mongo-cxx-driver:$(MONGOCXX_VERSION)-bookworm
20+
$(DOCKER) run --rm -it mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-bookworm
2121

2222
.PHONY: test
2323
test: | $(filter nocachebuild build, $(MAKECMDGOALS))

extras/docker/bookworm/TestDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file TestDockerfile.j2 using the generate.py script
33

4-
FROM mongo-cxx-driver:3.8.0-bookworm
4+
FROM mongodb/mongo-cxx-driver:3.8.0-bookworm
55

66
WORKDIR /build
77

extras/docker/jammy/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ DOCKER=docker
77
.PHONY: build
88
build:
99
$(DOCKER) build . \
10-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-jammy
10+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-jammy
1111

1212
.PHONY: nocachebuild
1313
nocachebuild:
1414
$(DOCKER) build . \
1515
--no-cache \
16-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-jammy
16+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-jammy
1717

1818
.PHONY: run
1919
run: | $(filter nocachebuild build, $(MAKECMDGOALS))
20-
$(DOCKER) run --rm -it mongo-cxx-driver:$(MONGOCXX_VERSION)-jammy
20+
$(DOCKER) run --rm -it mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-jammy
2121

2222
.PHONY: test
2323
test: | $(filter nocachebuild build, $(MAKECMDGOALS))

extras/docker/jammy/TestDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file TestDockerfile.j2 using the generate.py script
33

4-
FROM mongo-cxx-driver:3.8.0-jammy
4+
FROM mongodb/mongo-cxx-driver:3.8.0-jammy
55

66
WORKDIR /build
77

extras/docker/redhat-ubi-9.2/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,17 @@ DOCKER=docker
77
.PHONY: build
88
build:
99
$(DOCKER) build . \
10-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-redhat-ubi-9.2
10+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-redhat-ubi-9.2
1111

1212
.PHONY: nocachebuild
1313
nocachebuild:
1414
$(DOCKER) build . \
1515
--no-cache \
16-
-t mongo-cxx-driver:$(MONGOCXX_VERSION)-redhat-ubi-9.2
16+
-t mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-redhat-ubi-9.2
1717

1818
.PHONY: run
1919
run: | $(filter nocachebuild build, $(MAKECMDGOALS))
20-
$(DOCKER) run --rm -it mongo-cxx-driver:$(MONGOCXX_VERSION)-redhat-ubi-9.2
20+
$(DOCKER) run --rm -it mongodb/mongo-cxx-driver:$(MONGOCXX_VERSION)-redhat-ubi-9.2
2121

2222
.PHONY: test
2323
test: | $(filter nocachebuild build, $(MAKECMDGOALS))

extras/docker/redhat-ubi-9.2/TestDockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DO NOT EDIT THIS FILE DIRECTLY
22
# This file was auto generated from the template file TestDockerfile.j2 using the generate.py script
33

4-
FROM mongo-cxx-driver:3.8.0-redhat-ubi-9.2
4+
FROM mongodb/mongo-cxx-driver:3.8.0-redhat-ubi-9.2
55

66
WORKDIR /build
77

0 commit comments

Comments
 (0)