Use like you would any other base image:
FROM xxlabaza/alpine
RUN apk add --no-cache mysql-client
ENTRYPOINT ["mysql"]
The image has ONBUILD
action for setting up time zone
with default value - Europe/Moscow. You can rewrite the default value like this:
FROM xxlabaza/alpine
ENV TZ Europe/Paris
RUN apk add --no-cache mysql-client
ENTRYPOINT ["mysql"]
This image is officially supported on Docker version 1.12.3.
Support for older versions (down to 1.6) is provided on a best-effort basis.
Please see the Docker installation documentation for details on how to upgrade your Docker daemon.
If you have any problems with or questions about this image, please contact me through a GitHub issue.
You are invited to contribute new features, fixes, or updates, large or small; I am always thrilled to receive pull requests, and do my best to process them as fast as I can.
Before you start to code, I recommend discussing your plans through a GitHub issue, especially for more ambitious contributions. This gives other contributors a chance to point you in the right direction, give you feedback on your design, and help you find out if someone else is working on the same thing.