I am using docker-toolbox in Windows 8.1 and I have created a docker-machine (virtual box) named default and am running a mariadb container inside it.
My issue is, that I can not connect to said database system via HeidiSQL on my windows System.
Inside the docker container I am able to use the mysql command and execute queries.
Steps I have done so far:
Add port forwarding inside virtual box:
https://i.stack.imgur.com/IcXTJ.jpgchange chain forwarding firewall rule to accepting
Prove: https://i.stack.imgur.com/6uMKO.jpgTried connecting to the database system in windows through heidisql with ip "localhost", "127.0.0.1" and the ip i get through "docker-machine ip default"
Connected to docker container through "winpty docker exec -it mariadb bash" to check for firewall issues, but everything was accepting there.
Made sure that the line "#bind =127.0.01" was commented out inside /etc/mysql/my.cnf
I really don't know what to do anymore to locate the issue. Mariadb logs just say that it is ready for connections, but I seem to not being able to reach it.
Any idea how I can track down the issue?