Skip to content

Commit c75dc15

Browse files
committed
switch mysql:latest in testflows to mysql:8.0
Signed-off-by: Slach <[email protected]>
1 parent e490c53 commit c75dc15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ LABEL "org.opencontainers.image.description"="A tool for easy ClickHouse backup
130130
LABEL "org.opencontainers.image.source"="https://github.com/Altinity/clickhouse-backup"
131131
LABEL "org.opencontainers.image.documentation"="https://github.com/Altinity/clickhouse-backup/blob/master/Manual.md"
132132

133-
RUN apt-get update && apt-get install -y gpg xxd bsdmainutils parallel curl wget && curl -sL https://kopia.io/signing-key | gpg --dearmor --verbose -o /usr/share/keyrings/kopia-keyring.gpg && \
133+
RUN apt-get update && apt-get install --no-install-recommends -y xxd bsdmainutils parallel curl wget && apt-get install -y gpg && curl -sL https://kopia.io/signing-key | gpg --dearmor --verbose -o /usr/share/keyrings/kopia-keyring.gpg && \
134134
echo "deb [signed-by=/usr/share/keyrings/kopia-keyring.gpg] https://packages.kopia.io/apt/ stable main" > /etc/apt/sources.list.d/kopia.list && \
135135
curl -sL 'https://packages.clickhouse.com/rpm/lts/repodata/repomd.xml.key' | gpg --dearmor --verbose -o /usr/share/keyrings/clickhouse-keyring.gpg && \
136136
echo "deb [signed-by=/usr/share/keyrings/clickhouse-keyring.gpg arch=$(dpkg --print-architecture)] https://packages.clickhouse.com/deb stable main" > /etc/apt/sources.list.d/clickhouse.list && \

test/testflows/clickhouse_backup/docker-compose/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ services:
7777
condition: service_healthy
7878

7979
mysql:
80-
image: mysql:${MYSQL_VERSION:-latest}
80+
image: mysql:${MYSQL_VERSION:-8.0}
8181
command: --gtid_mode=on --enforce_gtid_consistency=ON
8282
hostname: mysql
8383
environment:

0 commit comments

Comments
 (0)