Restructured Documentation
This commit is contained in:
5
Containers/Docker/Docker Networking.md
Normal file
5
Containers/Docker/Docker Networking.md
Normal file
@ -0,0 +1,5 @@
|
||||
### Configure Docker Network
|
||||
We want to use a dedicated subnet / network specifically for containers, so they don't trample over the **SERVER** and **LAN** networks. If you are unsure of the name of the network adapter, in this case `eth0`, just type `ipaddr` in the terminal to list the network interfaces to locate it.
|
||||
```
|
||||
docker network create -d macvlan --subnet=192.168.5.0/24 --gateway=192.168.5.1 -o parent=eth0 docker_network
|
||||
```
|
Reference in New Issue
Block a user