Skip to content

Commit

Permalink
build: bump MongoDb version to '5.0.31'
Browse files Browse the repository at this point in the history
  • Loading branch information
QuadStingray authored and root committed Jan 29, 2025
1 parent f6fbb1c commit 5777e15
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 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="5.0.30"
ARG MONGODB_VERSION="5.0.31"

EXPOSE 27017/tcp

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Automated builds of the image are available on
[Dockerhub](https://hub.docker.com/r/mongocamp/mongodb/)

```bash
docker pull mongocamp/mongodb:5.0.30
docker pull mongocamp/mongodb:5.0.31
```

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

```bash
docker run --publish 27017:27017 mongocamp/mongodb:5.0.30
docker run --publish 27017:27017 mongocamp/mongodb:5.0.31
```

*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:5.0.30
image: mongocamp/mongodb:5.0.31
ports:
- "27017:27017"
volumes:
Expand Down

0 comments on commit 5777e15

Please sign in to comment.