Skip to content

Commit

Permalink
build: bump MongoDb version to '7.0.12'
Browse files Browse the repository at this point in the history
  • Loading branch information
QuadStingray authored and root committed Jun 28, 2024
1 parent 0e12ffe commit 15c5839
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ENV MONGO_DATA_DIR=/var/lib/mongodb \
MONGO_REPLICA_SET_NAME=NONE \
MONGO_REPLICA_KEY=RANDOM

ARG MONGODB_VERSION="7.0.11"
ARG MONGODB_VERSION="7.0.12"

EXPOSE 27017/tcp

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# mongocamp/mongodb:7.0.11
# mongocamp/mongodb:7.0.12

![Docker Pulls](https://img.shields.io/docker/pulls/mongocamp/mongodb) ![Docker Image Size with architecture (latest by date/latest semver)](https://img.shields.io/docker/image-size/mongocamp/mongodb?sort=semver) ![Docker Image Version (latest semver)](https://img.shields.io/docker/v/mongocamp/mongodb?sort=semver)

Expand Down Expand Up @@ -37,7 +37,7 @@ Automated builds of the image are available on
[Dockerhub](https://hub.docker.com/r/mongocamp/mongodb/)

```bash
docker pull mongocamp/mongodb:7.0.11
docker pull mongocamp/mongodb:7.0.12
```

Alternatively you can build the image yourself.
Expand All @@ -51,7 +51,7 @@ docker build . --tag 'mongocamp/mongodb:dev';
Start MongoDB using:

```bash
docker run --publish 27017:27017 mongocamp/mongodb:7.0.11
docker run --publish 27017:27017 mongocamp/mongodb:7.0.12
```

*Alternatively, you can use the sample [docker-compose.yml](docker-compose.yml) file to start the container using [Docker Compose](https://docs.docker.com/compose/)*
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '2'
services:
MongoDB:
image: mongocamp/mongodb:7.0.11
image: mongocamp/mongodb:7.0.12
ports:
- "27017:27017"
volumes:
Expand Down

0 comments on commit 15c5839

Please sign in to comment.