following Running Percona Server for MySQL in a Docker Container — Percona Server 8.0 Documentation
the first command doesn’t expose a network and assume you will use docker veth setup to attach another container.
My goal is to reach the server with my local development for tests (outside of docker)
i tried starting it up with
docker run -d \
--network=host \
--name ps \
-e MYSQL_ROOT_PASSWORD=root \
percona/percona-server:8.0
and even passing "--port=3306"
Also tried to wrap it in another Dockerfile that was basically:
FROM percona/percona-server:8.0
EXPOSE 3306
But no matter what, i never get any port listening from the container. Is this image socket only?