Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 558 Bytes

README.md

File metadata and controls

20 lines (13 loc) · 558 Bytes

docker-exabgp

A simple docker container to announce unicast routes for docker containers.

This container is based on Alpine Linux, in an effort to keep it as small as possible.

The container works with NET_ADMIN capabilities and net=host to add loopback interfaces to the host OS (in my case CoreOS).

The routes are then advertised to neighbours.

Run as follows:

docker run -d --name exabgp --restart always -p 179:179 \
           --cap-add=NET_ADMIN --net=host \
           -v exabgp-conf:/usr/etc/exabgp mikenowak/exabgp

PRs welcome.