Create Docker from linux-generic MySQL
- Download Linux-generic mysql-5.7.25-linux-glibc2.12-x86_64.tar.gz: direct download link, download page
- Put that file in
distro
folder before building. - Install mysql client on host system (see your system recomendations on it)
Step-by-step.
- Set executable rights for scripts:
chmod +x build.sh run.sh privilege_fix.sh connect.sh
- Build docker image
ubuntusql
from mysql archive (you must put it indistro
folder):
./build.sh
- Initialize and run container
ubuntusql_container
fromubuntusql
image (you can close that log-console, container will still go on):
./run.sh
- Fix network privileges (to connect into docker mysql from host system, more: stackoverflow answer)
./privilege_fix.sh
- Connect from your host system into docker sql:
./connect.sh
And you will see:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.25 MySQL Community Server (GPL)
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql>
Now you are connected to mysql in your docker container from host.