Skip to content

Build docker proxysql with base image from AmazonLinux 2023

Notifications You must be signed in to change notification settings

debeando/docker-proxysql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ProxySQL Docker Image

ProxySQL is a high performance, high availability, protocol aware proxy for MySQL and forks (like Percona Server and MariaDB). More details at ProxySQL website.

Image Description

This image is maintained by DeBeAndo and will be updated regularly on best-effort basis. The image is based on AmazonLinux 2023 and only contain ProxySQL package for AmazonLinux.

Run

To run a ProxySQL container:

docker run --detach \
	--name proxysql \
	--publish 6032:6032 \
	--publish 3306:3306 \
	ghcr.io/debeando/docker-proxysql

To run a ProxySQL container with a custom ProxySQL configuration file:

docker run --detach \
	--name proxysql \
	--publish 6032:6032 \
	--publish 3306:3306 \
	--volume proxysql.cnf:/etc/proxysql.cnf \
	ghcr.io/debeando/docker-proxysql

To run a ProxySQL container in Mac with Apple Chip:

docker run --detach \
	--name proxysql \
	--platform linux/amd64 \
	--publish 6032:6032 \
	--publish 3306:3306 \
	ghcr.io/debeando/docker-proxysql