Skip to content

Commit e531e96

Browse files
committed
chore(ci): bump tarantool 2.x default docker image
- Bump Tarantool 2.x default docker image from 2.11.2-ubuntu20.04 to 2.11.8-ubuntu20.04
1 parent 41f8d63 commit e531e96

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
env:
4444
TARANTOOL_SERVER_USER: root
4545
TARANTOOL_SERVER_GROUP: root
46-
TARANTOOL_VERSION: "2.11.2-ubuntu20.04"
46+
TARANTOOL_VERSION: "2.11.8-ubuntu20.04"
4747
run: ./mvnw -B test -P integration -Djacoco.destFile=target/jacoco-cartridge-container.exec --file pom.xml
4848

4949
- name: Print system images
@@ -63,7 +63,7 @@ jobs:
6363
timeout-minutes: 25
6464
strategy:
6565
matrix:
66-
tarantool-version: [ "1.x-centos7", "2.11.2-ubuntu20.04", "3.0.1-old" ]
66+
tarantool-version: [ "1.x-centos7", "2.11.8-ubuntu20.04", "3.0.1-old" ]
6767
fail-fast: false
6868
steps:
6969
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## [Unreleased]
44

5+
- Change `TARANTOOL_VERSION` default value from `2.11.2-ubuntu20.04` to `2.11.8-ubuntu20.04`
6+
57
## [1.4.1] - 2025-11-07
68
- Bump httpclient from 4.5.14 to httpclient5 5.5.1
79
- Bump various maven plugins

src/main/java/org/testcontainers/containers/TarantoolContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class TarantoolContainer extends GenericContainer<TarantoolContainer>
1818
implements TarantoolContainerOperations<TarantoolContainer> {
1919

2020
public static final String DEFAULT_IMAGE = "tarantool/tarantool";
21-
public static final String DEFAULT_TAG = "2.11.2-ubuntu20.04";
21+
public static final String DEFAULT_TAG = "2.11.8-ubuntu20.04";
2222
public static final String DEFAULT_BASE_IMAGE = String.format("%s:%s", DEFAULT_IMAGE, DEFAULT_TAG);
2323

2424

src/main/resources/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG IMAGE="tarantool/tarantool"
2-
ARG TARANTOOL_VERSION="2.11.2-ubuntu20.04"
2+
ARG TARANTOOL_VERSION="2.11.8-ubuntu20.04"
33
FROM $IMAGE:$TARANTOOL_VERSION AS cartridge-base
44

55
ARG TARANTOOL_SERVER_USER="root"

0 commit comments

Comments
 (0)