Home > Archives > Docker网络模式

Docker网络模式

Publish:

Bridge 模式

1
2
3
4
5
6
7
docker run -d -p 5000:5000 registry
docker pull hello-world
docker tag fce289e99eb9 localhost:5000/hello-world:v1
docker push localhost:5000/hello-world:v1
docker rmi localhost:5000/hello-world:v1
docker pull localhost:5000/hello-world:v1
docker run -it localhost:5000/hello-world:v1

Host 模式

1
docker run --net=host -d registry

Container 模式

1
2
docker run --name registry1 -p 5000:5000 registry
docker run --name busybox -d --net=container:registry1 busybox:latest

None 模式

Overlay 模式

声明: 本文采用 BY-NC-SA 授权。转载请注明转自: Ding Bao Guo