Skip to content

Commit a8bfc08

Browse files
committed
Update default docker version of mt-watcher to 29.1.3.
1 parent 25292f3 commit a8bfc08

4 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
* If the given URL is http://github.com/... and returns 404, then try to download the archive with the `gh` command and try to download the archive at http://github.com/...
1212
* Allow starman's --user option to be specified in the MT_UID environment variable.
1313

14+
### Changed
15+
16+
* Update default docker version of mt-watcher to 29.1.3.
17+
18+
The DOCKER_VERSION environment variable can be used to override the default version.
19+
```
20+
$ make up-psgi DOCKER_VERSION=28.5.2 # If you want to use an older specific version
21+
```
22+
1423
## [2.8.0] - 2025-04-23
1524

1625
### Changed

Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ ifneq (${MT_EXPOSE_PORT},)
3333
export DOCKER_COMPOSE_YAML_EXPOSE=-f ./mt/mt-expose.yml
3434
endif
3535

36+
export DOCKER_VERSION
3637
export DOCKER_COMPOSE_USER_YAML
3738
export DOCKER_MT_BUILD_CONTEXT
3839
export DOCKER_MT_DOCKERFILE

mt/common.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ services:
5757
mt-watcher:
5858
build:
5959
context: mt-watcher
60+
args:
61+
- DOCKER_VERSION=${DOCKER_VERSION:-29.1.3}
6062
working_dir: /var/www/cgi-bin/mt
6163
environment:
6264
PERL_FNS_NO_OPT: ${PERL_FNS_NO_OPT:-0}

mt/mt-watcher/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM perl:5.36-slim
1+
FROM perl:5.42-slim
22

3-
ARG DOCKER_VERSION=20.10.9
3+
ARG DOCKER_VERSION
44

55
RUN set -ex \
66
\

0 commit comments

Comments
 (0)