Skip to content

Commit 84e15e8

Browse files
authored
Upgrade to mongo 7.0.15-jammy (#154)
1 parent d19cf78 commit 84e15e8

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
1313
- Upgrade to `eclipse-temurin:11.0.24_8-jre-focal`. (#149)
1414
- Upgrade to Gradle 8.10.2. (#150)
1515
- Upgrade to `testcontainers` 1.20.4. (#153)
16+
- Upgrade to `mongo:7.0.15-jammy`. (#154)
1617

1718
## [[8.5.0]](https://github.com/iExecBlockchainComputing/iexec-blockchain-adapter-api/releases/tag/v8.5.0) 2024-06-18
1819

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ services:
66
- "8545"
77

88
ibaa-blockchain-adapter-mongo:
9-
image: library/mongo:4.4
10-
entrypoint: "/bin/bash"
11-
command: -c "mongod --bind_ip_all --port 13012"
9+
image: library/mongo:7.0.15-jammy
10+
expose:
11+
- "27017"

src/itest/java/com/iexec/blockchain/IntegrationTests.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ class IntegrationTests {
7878
private static final String CHAIN_SVC_NAME = "ibaa-chain";
7979
private static final int CHAIN_SVC_PORT = 8545;
8080
private static final String MONGO_SVC_NAME = "ibaa-blockchain-adapter-mongo";
81-
private static final int MONGO_SVC_PORT = 13012;
81+
private static final int MONGO_SVC_PORT = 27017;
8282

8383
public static final String USER = "admin";
8484
public static final String PASSWORD = "whatever";

0 commit comments

Comments
 (0)