Skip to content

Commit c8e9bd0

Browse files
committed
v8.0.34
debian 11.7 mysql client 8.0.34
1 parent ea7d9ca commit c8e9bd0

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

8.0/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# NOTE: Most of the file is borrowed from https://github.com/docker-library/mysql/blob/master/8.0/Dockerfile.debian
22

3-
FROM debian:11.6-slim
3+
FROM debian:11.7-slim
44

55
ARG VERSION=0.0.0
66
ENV VERSION=${VERSION}
@@ -75,9 +75,9 @@ RUN set -eux \
7575
&& true
7676

7777
ENV MYSQL_MAJOR 8.0
78-
ENV MYSQL_VERSION 8.0.33-1debian11
78+
ENV MYSQL_VERSION 8.0.34-1debian11
7979

80-
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.33-1debian11_amd64.deb
80+
# https://repo.mysql.com/apt/debian/pool/mysql-8.0/m/mysql-community/mysql-client_8.0.34-1debian11_amd64.deb
8181
RUN set -eux \
8282
&& echo 'deb [ signed-by=/etc/apt/keyrings/mysql.gpg ] http://repo.mysql.com/apt/debian/ bullseye mysql-8.0' > /etc/apt/sources.list.d/mysql.list \
8383
&& true

LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2022-present Jose Quintana <https://git.io/joseluisq>
3+
Copyright (c) 2022-present Jose Quintana <https://joseluisq.net>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ docker run -it --rm joseluisq/mysql-client mysql --version
4040

4141
- The default user (unprivileged) is `mysql`.
4242
- `mysql` home directory is located at `/home/mysql`.
43-
- If you want a full privileged user try `root`. E.g append a `--user root` argument to `docker run`.
43+
- If you want a fully privileged user try `root`. E.g append a `--user root` argument to `docker run`.
4444

4545
## Exporter
4646

47-
`mysql_exporter` is a custom tool that exports a database script using `mysqldump`. Additionally, it support gzip compression.
47+
`mysql_exporter` is a custom tool that exports a database script using `mysqldump`. Additionally, it supports gzip compression.
4848
It can be configured via environment variables or using `.env` file.
4949

5050
### Setup via environment variables
@@ -107,7 +107,7 @@ __Notes:__
107107

108108
- `--volume $PWD:/home/mysql/sample` specifies a [bind mount [directory](https://docs.docker.com/storage/bind-mounts/) from the host to the container.
109109
- `$PWD` is just an example host working directory. Use your path.
110-
- `/home/mysql/` is default home directory user (optional). View [User privileges](#user-privileges) section above.
110+
- `/home/mysql/` is the default home directory user (optional). View the [User privileges](#user-privileges) section above.
111111
- `/home/mysql/sample` is a container directory that Docker will create for us.
112112
- `--workdir /home/mysql/sample` specifies the working directory used by default inside the container.
113113
- `production.env` is a custom env file path with the corresponding environment variables passed as arguments. That file should be available in your host working directory. E.g `$PWD` in this case.
@@ -185,7 +185,7 @@ docker run --rm -it \
185185

186186
**Notes:**
187187

188-
- `DB_IMPORT_GZIP=true`: Decompress a dump file using Gzip (optional). If `false` or not defined then the import file will be treated as plain `.sql` file.
188+
- `DB_IMPORT_GZIP=true`: Decompress a dump file using Gzip (optional). If `false` or not defined then the import file will be treated as a plain `.sql` file.
189189
- `DB_ARGS`: can be used to pass more `mysql` arguments (optional).
190190
- A `.env` example file can be found at [./8.0/env/mysql_importer.env](./8.0/env/mysql_importer.env)
191191

@@ -199,4 +199,4 @@ Feel free to send some [pull request](https://github.com/joseluisq/docker-mysql-
199199

200200
This work is primarily distributed under the terms of both the [MIT license](LICENSE-MIT) and the [Apache License (Version 2.0)](LICENSE-APACHE).
201201

202-
© 2022-present [Jose Quintana](https://git.io/joseluisq)
202+
© 2022-present [Jose Quintana](https://joseluisq.net)

0 commit comments

Comments
 (0)