File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed
Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66
77## [ Unreleased]
88
9+ ## [ 2.2.0] - 2023-02-15
10+
11+ ### Added
12+
13+ * Can now be lunched in an arm64 environment.
14+
915## [ 2.1.2] - 2022-08-24
1016
1117### Fixed
Original file line number Diff line number Diff line change 1- FROM perl:5.34
1+ FROM perl:5.36
22
3- ENV DOCKER_VERSION=20.10.7
3+ ARG TARGETARCH
4+ ARG DOCKER_VERSION=20.10.9
45
56# # docker
67RUN set -ex \
78 \
89 && mkdir /tmp/docker \
910 && cd /tmp/docker \
10- && curl -sL https://download.docker.com/linux/static/stable/x86_64/docker-${DOCKER_VERSION}.tgz -o docker.tgz \
11+ && case "${TARGETARCH}" in arm64) platform=aarch64;; *) platform=x86_64;; esac \
12+ && curl -sL https://download.docker.com/linux/static/stable/${platform}/docker-${DOCKER_VERSION}.tgz -o docker.tgz \
1113 && tar zxf docker.tgz \
1214 && mv docker/docker /usr/bin/docker \
1315 && rm -fr /tmp/docker
Original file line number Diff line number Diff line change 11version : " 3"
22services :
33 db :
4- image : ${DOCKER_MYSQL_IMAGE:-mysql:5.7.29 }
4+ image : ${DOCKER_MYSQL_IMAGE:-mysql:8.0.32 }
55 environment :
66 MYSQL_ROOT_PASSWORD : password
77 command : --default-authentication-plugin=mysql_native_password
88 volumes :
9- - " ${DOCKER_MYSQL_VOLUME:-mysql5 }:/var/lib/mysql"
9+ - " ${DOCKER_MYSQL_VOLUME:-mysql8 }:/var/lib/mysql"
1010volumes :
1111 mariadb10 :
1212 driver : local
You can’t perform that action at this time.
0 commit comments