Skip to content
This repository was archived by the owner on Jun 20, 2024. It is now read-only.

add info about network aliases #3840

Merged
merged 1 commit into from
Jan 18, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions site/tasks/weavedns/weavedns.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,17 @@ root@ubuntu:/# ping pingme
...
```

Moreover, weaveDNS always register all network aliases (--network-alias option to docker run).

```
host1$ docker run --network weave --network-alias pingme --network-alias pingme2 -dti weaveworks/ubuntu
host1$ docker run --network weave --hostname=ubuntu.weave.local -ti weaveworks/ubuntu
root@ubuntu:/# ping pingme
...
root@ubuntu:/# ping pingme2
...
```

> **Note** If both hostname and container name are specified at
the same time, the hostname takes precedence. In this circumstance, if
the hostname is not in the weaveDNS domain, the container is *not*
Expand Down