Skip to content

Commit

Permalink
v1.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
joseluisq committed Nov 26, 2023
1 parent e31d688 commit 14870e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=$BUILDPLATFORM alpine:3.17.4 as build
FROM --platform=$BUILDPLATFORM alpine:3.17.5 as build

ARG TARGETPLATFORM
ARG VERSION=0.0.0
Expand All @@ -22,7 +22,7 @@ RUN set -ex; \
chmod +x /usr/local/bin/enve; \
true

FROM alpine:3.17.4
FROM alpine:3.17.5

ARG VERSION=0.0.0
ENV VERSION=${VERSION}
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ docker run -it --rm joseluisq/alpine-mysql-client mysql --version

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

## Additional Tools

This image comes with some additional tools.

### Exporter

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

#### Setup via environment variables
Expand Down Expand Up @@ -136,7 +136,7 @@ services:

### Importer

`mysql_importer` is a custom tool which imports a SQL script file (text or Gzip) using `mysql` command.
`mysql_importer` is a custom tool that imports a SQL script file (text or Gzip) using `mysql` command.
It can be configured via environment variables or using `.env` file.

#### Setup via environment variables
Expand Down Expand Up @@ -166,7 +166,7 @@ DB_ARGS=

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

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

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

Expand Down

0 comments on commit 14870e3

Please sign in to comment.