Commit 246c7366 authored by Mahmoud Zalt's avatar Mahmoud Zalt

Merge pull request #68 from Gummibeer/patch-1

Issue #67
parents adaaa25f 762e2ec0
......@@ -728,7 +728,11 @@ If your Host name is different then `default`, you have to specify it (`docker-m
<br>
**On Linux:**
1 - Run `ifconfig` in the terminal.
1 - Run `ifconfig` in the terminal and follow step 2 - or grep the IP directly by the following command.
```shell
$ ifconfig docker0 | grep 'inet' | cut -d: -f2 | awk '{ print $1}' | head -n1
```
2 - In the result search for `docker0`, your IP address will be next to `inet addr`.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment