pyveth - veth driver for Docker Engine written in Python
Jacek Kowalski
2020-05-04 f973b9b31bf09c768adad53dabbdeb818e35be73
commit | author | age
f973b9 1 {
JK 2     "description": "pyveth - veth network driver in Python",
3     "documentation": "https://github.com/jacekkow/docker-plugin-pyveth",
4     "workdir": "/usr/src/app",
5     "entrypoint": ["uwsgi", "--ini", "uwsgi.ini"],
6     "env": [
7         {
8             "name": "HOME",
9             "value": "/usr/src/app"
10         }
11     ],
12     "interface" : {
13         "types": ["docker.networkdriver/1.0"],
14         "socket": "pyveth.sock"
15     },
16     "linux": {
17         "capabilities": ["CAP_NET_ADMIN"]
18     },
19     "network": {
20         "type": "host"
21     }
22 }