Skip to content

Commit 14870e3

Browse files
committed
v1.6.2
1 parent e31d688 commit 14870e3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=$BUILDPLATFORM alpine:3.17.4 as build
1+
FROM --platform=$BUILDPLATFORM alpine:3.17.5 as build
22

33
ARG TARGETPLATFORM
44
ARG VERSION=0.0.0
@@ -22,7 +22,7 @@ RUN set -ex; \
2222
chmod +x /usr/local/bin/enve; \
2323
true
2424

25-
FROM alpine:3.17.4
25+
FROM alpine:3.17.5
2626

2727
ARG VERSION=0.0.0
2828
ENV VERSION=${VERSION}

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ docker run -it --rm joseluisq/alpine-mysql-client mysql --version
4343

4444
- Default user (unprivileged) is `mysql`.
4545
- `mysql` home directory is located at `/home/mysql`.
46-
- If you want a fully privileged user try `root`. E.g append a `--user root` argument to `docker run`.
46+
- If you want a fully privileged user try `root`. E.g. append a `--user root` argument to `docker run`.
4747

4848
## Additional Tools
4949

5050
This image comes with some additional tools.
5151

5252
### Exporter
5353

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

5757
#### Setup via environment variables
@@ -136,7 +136,7 @@ services:
136136
137137
### Importer
138138
139-
`mysql_importer` is a custom tool which imports a SQL script file (text or Gzip) using `mysql` command.
139+
`mysql_importer` is a custom tool that imports a SQL script file (text or Gzip) using `mysql` command.
140140
It can be configured via environment variables or using `.env` file.
141141

142142
#### Setup via environment variables
@@ -166,7 +166,7 @@ DB_ARGS=
166166

167167
#### Import a SQL script via a Docker container
168168

169-
The following Docker commands create a container to import a SQL script file to a specific database and remove the container afterward.
169+
The following Docker commands create a container to import an SQL script file to a specific database and remove the container afterward.
170170

171171
**Note:** `mysql_importer` supports environment variables or a `.env` file passed as an argument.
172172

0 commit comments

Comments
 (0)