I followed the following tutorial https://store.docker.com/images/rethinkdb but I can not see the ip address.What is the problem?
Asked
Active
Viewed 57 times
1 Answers
0
First of all: Your containers are exited so you won't be able to contact them anyway.
Second: containers will be available on localhost and respond to the ports you map with the -p
flag, so -p 12345:80
will map port 80 in the container to 12345 on your machine, meaning you can connect on localhost:12345
.

fiskeben
- 3,395
- 4
- 31
- 35