point-to-point network driver plugin
1.1K
For efficient container-to-container networking a simple non-bridged veth pair is sufficient. This docker network driver implements a point-to-point network using a veth pair.
docker plugin install choppsv1/docker-network-p2p
To use with docker
docker network create --driver="choppsv1/docker-network-p2p" testnet
docker run --rm --network=testnet alpine ip addr
To use in docker compose:
version: "2.4"
services:
h1:
image: alpine
command: sh -c 'ip addr; tail -f /dev/null'
networks: [ "p2pnet" ]
h2:
image: alpine
command: sh -c 'ip addr; tail -f /dev/null'
networks: [ "p2pnet" ]
networks:
p2pnet:
driver: "choppsv1/docker-network-p2p:latest"
The software contained herein is licensed under Apache License (Version 2.0)
Content type
Plugin
Digest
Size
9.6 MB
Last updated
over 6 years ago
docker plugin install choppsv1/docker-network-p2p