Enable Mysql remote access Easyengine V4

How to Enable Mysql remote access Easyengine V4?

For people coming here looking for an answer:
Go edit the docker-compose.yml file in: /opt/easyengine/services/docker-compose.yml

Under “global-db:”
Add this:
ports:
- “3306:3306”

This will map the public 3306 port to the port 3306 on the database container.
When the file is saved, rebuild the docker files in the same dir:
docker-compose up -d