Percona 5.7 docker image with arm64 support.
368
The image creation is based on the official Percona docker images. Therefore the usage is similar to these official images.
Important: This image is for development purpose only. Unlike in the official repositories, the root user starts the mysqld.
There are no official arm64 images for Percona 5.7.
Please read also the official documentation.
version: '3.8'
services:
percona:
image: greedybytes/percona:5.7-bullseye-arm64
environment:
MYSQL_ROOT_PASSWORD: 'my-secret-password'
MYSQL_ROOT_PASSWORDThis variable is mandatory and specifies the password that will be set for the root superuser account.
MYSQL_ROOT_HOSTBy default, root can connect from anywhere. This option restricts root connections to be from the specified host only. Also localhost can be used here for the local-only root access.
MYSQL_DATABASEThis variable is optional and allows you to specify the name of a database to be created on image startup. If a user/password was supplied (see below) then that user will be granted superuser access (corresponding to GRANT ALL) to this database.
MYSQL_USER, MYSQL_PASSWORDThese variables are optional, used in conjunction to create a new user and to set that user's password. This user will be granted superuser permissions (see above) for the database specified by the MYSQL_DATABASE variable. Both variables are required for a user to be created.
Do note that there is no need to use this mechanism to create the root superuser, that user gets created by default with the password specified by the MYSQL_ROOT_PASSWORD variable.
MYSQL_ALLOW_EMPTY_PASSWORDThis is an optional variable. Set to yes to allow the container to be started with a blank password for the root user. NOTE: Setting this variable to yes is not recommended unless you really know what you are doing, since this will leave your instance completely unprotected, allowing anyone to gain complete superuser access.
MYSQL_INITDB_SKIP_TZINFOAt first run MySQL automatically loads from the local system the timezone information needed for the CONVERT_TZ() function. If it's is not what is intended, this option disables timezone loading.
Content type
Image
Digest
sha256:a7d37d814…
Size
205.1 MB
Last updated
over 3 years ago
docker pull greedybytes/percona:5.7-bullseye-arm64