{"id":34693639,"url":"https://github.com/jacekkow/docker-plugin-pyveth","last_synced_at":"2026-06-01T07:01:26.059Z","repository":{"id":94415457,"uuid":"261248730","full_name":"jacekkow/docker-plugin-pyveth","owner":"jacekkow","description":"pyveth - veth driver for Docker Engine written in Python","archived":false,"fork":false,"pushed_at":"2026-05-03T14:54:14.000Z","size":30,"stargazers_count":3,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-05-03T16:29:24.389Z","etag":null,"topics":["docker-engine","docker-plugin","macvlan","veth"],"latest_commit_sha":null,"homepage":"https://hub.docker.com/p/jacekkow/pyveth","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jacekkow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-05-04T17:16:09.000Z","updated_at":"2026-05-03T14:54:18.000Z","dependencies_parsed_at":"2023-03-24T00:35:59.189Z","dependency_job_id":null,"html_url":"https://github.com/jacekkow/docker-plugin-pyveth","commit_stats":null,"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/jacekkow/docker-plugin-pyveth","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacekkow%2Fdocker-plugin-pyveth","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacekkow%2Fdocker-plugin-pyveth/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacekkow%2Fdocker-plugin-pyveth/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacekkow%2Fdocker-plugin-pyveth/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jacekkow","download_url":"https://codeload.github.com/jacekkow/docker-plugin-pyveth/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jacekkow%2Fdocker-plugin-pyveth/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33763655,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker-engine","docker-plugin","macvlan","veth"],"created_at":"2025-12-24T22:07:40.064Z","updated_at":"2026-06-01T07:01:26.040Z","avatar_url":"https://github.com/jacekkow.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyveth - Docker Plugin for veth networks\n\nSimple network plugin for Docker Engine that can replace macvlan\nin container-as-VM scenarios, allowing host-to-container communication\n(see https://github.com/docker/for-linux/issues/931 for bug details).\n\nIt should be a drop-in replacement for macvlan module.\n\n![Build status](https://github.com/jacekkow/docker-plugin-pyveth/workflows/Release/badge.svg)\n\n## Installation\n\nPlugin is packaged as [Docker Engine-managed plugin](https://docs.docker.com/engine/extend/).\nCheck out [plugin page on Docker Hub](https://hub.docker.com/p/jacekkow/pyveth).\n\nTo install it simply run:\n\n```bash\ndocker plugin install jacekkow/pyveth\n```\n\n## Usage\n\nAfter installation you can use driver in newly-created networks:\n\n```bash\ndocker network create --driver jacekkow/pyveth:latest new-network\n```\n\nBy default it will simply create a pair of veth interfaces for each container.\nOne will be pushed inside the container and another will remain on host\n(without any IP assigned).\n\n## Options\n\nTo use options, add `--opt option=value` as an argument of `docker network create`:\n\n```bash\ndocker network create --driver jacekkow/pyveth:latest --opt parent=br0 new-network\n```\n\nAvailable options:\n\n`parent=brname`\n\nAutomatically attach host interface to the bridge interface `brname`.\n\n`nogw=1`\n\nDisable assignment of gateway IP.\n\n`nogw4=1`\n\nDisable assignment of IPv4 gateway IP.\n\n`nogw6=1`\n\nDisable assignment of IPv6 gateway IP.\n\n`gw4=IP`\n\n`gw6=IP`\n\nForces assignment of a specified gateway (only if one is not provided by the IPAM module)\nwhen creating the interface. Useful for [pyipam](https://github.com/jacekkow/docker-plugin-pyipam)\nwith `ptp=1` option and `nogw=1`/`nogw4=1`/`nogw6=1` here.\n\nUsing these would add routes like:\n```\ndefault via IP dev eth0\nIP dev eth0 scope link\n```\n\n## Container creation options\n\nTo use these options add `--network name=network_name,driver-opt=option=value,driver-opt=option=value`\nto the `docker run` invocation:\n\n```bash\ndocker run -i -t --rm --network name=test,ip=192.168.1.1,driver-opt=gw4=192.168.0.1,driver-opt=gw6=fe80:: alpine\n```\n\nAvailable options:\n\n`gw4=IP`\n\n`gw6=IP`\n\nOverrides network-level gw4/gw6 options.\n\n## Manual packaging\n\nIn order to test this module in development environment, you can build it\nby following [Docker Engine documentation](https://docs.docker.com/engine/extend/#developing-a-plugin).\n\nYou can also use `package.sh` helper script which will perform\nall the steps (including installation) automatically.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacekkow%2Fdocker-plugin-pyveth","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjacekkow%2Fdocker-plugin-pyveth","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjacekkow%2Fdocker-plugin-pyveth/lists"}