Skip to content

Commit

Permalink
v8.0.39
Browse files Browse the repository at this point in the history
- debian 2.7
- mysql-client 8.0.39
- enve 1.5.1
  • Loading branch information
joseluisq committed Sep 24, 2024
1 parent 13086f3 commit 65c8fa1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions 8.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# NOTE: Most of the file is borrowed from https://github.com/docker-library/mysql/blob/master/8.0/Dockerfile.debian

FROM debian:12.5-slim
FROM debian:12.7-slim

ARG VERSION=0.0.0
ENV VERSION=${VERSION}
Expand Down Expand Up @@ -75,9 +75,9 @@ RUN set -eux \
&& true

ENV MYSQL_MAJOR 8.0
ENV MYSQL_VERSION 8.0.36-1debian12
ENV MYSQL_VERSION 8.0.39-1debian12

# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.36-1debian12_amd64.deb
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.39-1debian12_amd64.deb
RUN set -eux \
&& echo 'deb [ signed-by=/etc/apt/keyrings/mysql.gpg ] http://repo.mysql.com/apt/debian/ bookworm mysql-8.0' > /etc/apt/sources.list.d/mysql.list \
&& true
Expand All @@ -99,7 +99,7 @@ RUN set -eux \
&& true

# Include the Enve tool
ARG ENVE_VERSION=1.5.0
ARG ENVE_VERSION=1.5.1

RUN set -eux \
&& DEBIAN_FRONTEND=noninteractive apt-get update -qq \
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ For more details see the official [MySQL 8 Client Programs](https://dev.mysql.co

```sh
docker run -it --rm joseluisq/mysql-client mysql --version
# mysql Ver 8.0.36 for Linux on x86_64 (MySQL Community Server - GPL)
# mysql Ver 8.0.39 for Linux on x86_64 (MySQL Community Server - GPL)
```

## User privileges
Expand Down Expand Up @@ -95,7 +95,7 @@ docker run --rm -it \

# MySQL 8 Client - Exporter
# =========================
# mysqldump Ver 8.0.28 for Linux on x86_64 (MySQL Community Server - GPL)
# mysqldump Ver 8.0.39 for Linux on x86_64 (MySQL Community Server - GPL)

# Exporting database `mydb` into a SQL script file...
# Output file: database_name.sql (SQL Text)
Expand Down Expand Up @@ -176,7 +176,7 @@ docker run --rm -it \

# MySQL 8 Client - Importer
# =========================
# mysql Ver 8.0.28 for Linux on x86_64 (MySQL Community Server - GPL)
# mysql Ver 8.0.39 for Linux on x86_64 (MySQL Community Server - GPL)

# Importing a SQL script file into database `mydb`...
# Input file: database_name.sql (4.0K / SQL Text)
Expand Down

0 comments on commit 65c8fa1

Please sign in to comment.