From 4c18e284f608e93a20320206eac17a261ff537ee Mon Sep 17 00:00:00 2001 From: Mark Swatosh Date: Tue, 29 Oct 2024 16:03:00 -0500 Subject: [PATCH] upgrade mongo image to 8.0.3 --- .github/workflows/ci-pull.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-pull.yml b/.github/workflows/ci-pull.yml index fc06495..9ea9050 100644 --- a/.github/workflows/ci-pull.yml +++ b/.github/workflows/ci-pull.yml @@ -20,7 +20,7 @@ jobs: services: mongo: - image: mongo:7.0.7 + image: mongo:8.0.3 # Set health checks to wait until mongo has started options: >- --health-cmd "echo 'db.runCommand("ping").ok' | mongosh --quiet" diff --git a/README.md b/README.md index 42a0b92..bb58174 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Requires Java 21 for virtual threads. IBM Semuru Runtimes Java 21 can be obtaine ### Set Up MongoDB You will need a MongoDB instance to use this sample. If you have Docker installed, you can use the following command to start a mongo container: ```shell -docker run -d -p 27017:27017 --name liberty_mongo mongo:7.0.7 +docker run -d -p 27017:27017 --name liberty_mongo mongo:8.0.3 ``` ## Running the Sample