intel/intel-optimized-mysql
5.8K
MySQL is world most popular database. This image is based on official DockerHub image (ver 8.0.31) and adds Intel optimizations of top of it. This readme focuses on Intel added scripts and configurations. Please refer to original readme regarding usage of this image.
This image can be used almost exactly like the official DockerHub MySQL image, with following differences:
--privileged
flag. entrypoint.sh
docker-entrypoint.sh
.
When replacing entrypoint remember to execute this script in order to use all optimizations./etc/mysql/conf.d/mysql.conf
file. When adding extra configuration remember to include those already present in mysql.conf
file.# build image
docker build . -t mysql-intel:your-tag --build-arg http_proxy --build-arg https_proxy --build-arg no_proxy --network=host
# run container using built image
docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=my-secret-pw --privileged -d mysql-intel:your-tag
docker pull intel/intel-optimized-mysql