ProxySQL Playground for testing and developing
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM ubuntu:20.04 |
|
|
|
RUN apt update && apt install -y python3-pymysql mariadb-client wget |
|
RUN wget https://github.com/sysown/proxysql/releases/download/v2.2.0/proxysql_2.2.0-ubuntu20_amd64.deb && \ |
|
dpkg -i proxysql_2.2.0-ubuntu20_amd64.deb |
|
|
|
CMD proxysql --idle-threads -f
|
|
|