I'm new at docker and I'm trying to test some things. From the docs I saw that we can map ports between the container and the host.
So I pull the mariadb
repo and run a container like this
$ docker run -p 127.0.0.1:3307:3306 --name mdb -e MYSQL_ROOT_PASSWORD=docker -d mariadb
This would bind port 3306 inside the container to port 3307 on the localhost or 127.0.0.1 interface on the host machine.
And It creates the container, I check it with $ docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
f7d30562194c mariadb "/docker-entrypoint. About an hour ago Up 6 minutes 127.0.0.1:3307->3306/tcp mdb
But when I telnet to the port, I got nothing
$ telnet 127.0.0.1 3307
Trying 127.0.0.1...
telnet: connect to address 127.0.0.1: Connection refused
telnet: Unable to connect to remote host
I'm doing this becouse I've got a mysql
running in the 3306 port, and I don't want to mess with that. I try switching the orders on the -p
option and also nothing on the telnet. Can you help me to see what I'm doing wrong?
(Also I'm running over boot2docker
on OSX 10.9.5
)