pyveth - veth driver for Docker Engine written in Python
Jacek Kowalski
2020-05-22 50a46b5cf11317d12d872b54ecd276ede52d5d0c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
    "description": "pyveth - veth network driver in Python",
    "documentation": "https://github.com/jacekkow/docker-plugin-pyveth",
    "workdir": "/usr/src/app",
    "entrypoint": ["./run.py"],
    "env": [
        {
            "name": "ENVIRONMENT",
            "value": "production"
        },
        {
            "name": "HOME",
            "value": "/usr/src/app"
        }
    ],
    "interface" : {
        "types": ["docker.networkdriver/1.0"],
        "socket": "pyveth.sock"
    },
    "linux": {
        "capabilities": ["CAP_NET_ADMIN"]
    },
    "network": {
        "type": "host"
    }
}