File tree Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Expand file tree Collapse file tree 6 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -282,21 +282,21 @@ Next, build the image. Prefer doing a no-cache-build with a clean docker cache.
282
282
283
283
```
284
284
$ yes | docker system prune -a
285
- $ cd mongo-cxx-driver/extras/docker/redhat-ubi-9.2
285
+ $ cd mongo-cxx-driver/extras/docker/redhat-ubi-9.3
286
286
$ make nocachebuild
287
287
```
288
288
289
289
Then, test that the image works as expected:
290
290
```
291
- $ cd redhat-ubi-9.2 /
291
+ $ cd redhat-ubi-9.3 /
292
292
$ make test
293
293
```
294
294
295
295
If the test passes, you will see the following output with the version number
296
296
of the driver that you are currently releasing:
297
297
```
298
- mongo-cxx-driver version: 3.8 .0
299
- THE redhat-ubi-9.2 IMAGE WORKS!
298
+ mongo-cxx-driver version: 3.9 .0
299
+ THE redhat-ubi-9.3 IMAGE WORKS!
300
300
```
301
301
302
302
If the test passes, then check in the bumped version numbers, and get it merged
@@ -317,7 +317,7 @@ images will be pushed to the public Docker Hub repository, so **only run these
317
317
commands when you are ready to push the images!**
318
318
```
319
319
$ docker buildx create --name mybuilder --use --bootstrap
320
- $ docker buildx build --push --platform linux/amd64,linux/arm64 --tag mongodb/mongo-cxx-driver:<VERSION NUMBER>-redhat-ubi-9.2 .
320
+ $ docker buildx build --push --platform linux/amd64,linux/arm64 --tag mongodb/mongo-cxx-driver:<VERSION NUMBER>-redhat-ubi-9.3 .
321
321
```
322
322
323
323
Update the ` Tags ` section of the Docker Hub
Original file line number Diff line number Diff line change 4
4
FROM alpine:3.18 AS builder
5
5
6
6
ARG MONGOCXX_VERSION=3.9.0
7
- ARG MONGOC_VERSION=1.25.1
7
+ ARG MONGOC_VERSION=1.25.2
8
8
ARG MONGOCRYPT_VERSION=1.8.2
9
9
10
10
WORKDIR /build
Original file line number Diff line number Diff line change 4
4
FROM debian:12-slim AS builder
5
5
6
6
ARG MONGOCXX_VERSION=3.9.0
7
- ARG MONGOC_VERSION=1.25.1
7
+ ARG MONGOC_VERSION=1.25.2
8
8
ARG MONGOCRYPT_VERSION=1.8.2
9
9
10
10
WORKDIR /build
Original file line number Diff line number Diff line change 5
5
6
6
7
7
MONGOCXX_VERSION = "3.9.0"
8
- MONGOC_VERSION = "1.25.1 "
8
+ MONGOC_VERSION = "1.25.2 "
9
9
MONGOCRYPT_VERSION = "1.8.2"
10
10
11
11
Original file line number Diff line number Diff line change 4
4
FROM ubuntu:22.04 AS builder
5
5
6
6
ARG MONGOCXX_VERSION=3.9.0
7
- ARG MONGOC_VERSION=1.25.1
7
+ ARG MONGOC_VERSION=1.25.2
8
8
ARG MONGOCRYPT_VERSION=1.8.2
9
9
10
10
WORKDIR /build
Original file line number Diff line number Diff line change 4
4
FROM registry.access.redhat.com/ubi9/ubi-minimal:9.3 AS builder
5
5
6
6
ARG MONGOCXX_VERSION=3.9.0
7
- ARG MONGOC_VERSION=1.25.1
7
+ ARG MONGOC_VERSION=1.25.2
8
8
ARG MONGOCRYPT_VERSION=1.8.2
9
9
10
10
WORKDIR /build
You can’t perform that action at this time.
0 commit comments