Update 'docker_portainer_stacks/README.md'

This commit is contained in:
sthope 2021-09-05 00:53:37 +02:00
parent 05c9b0a7a0
commit d8605dcc9e

View File

@ -1,2 +1,11 @@
# docker_portainer_stacks
# Docker Portainer Stacks
### Creating macvlan Network in Docker
```
docker network create -d macvlan \
--subnet=192.168.1.0/24 \
--gateway=192.168.1.1 \
-o parent=eth0 network
```