d30fbf1d72
- Extending SONiC building infrastructure to provide users with greater flexibility, by allowing them to elect a routing-stack different than the default one (quagga). The desired routing-stack will be defined in rules/config file. - As part of these changes I'm adding support for Free-Range-Routing (FRR) stack. Quagga will continue to be the default routing-stack. Signed-off-by: Rodny Molina <rodny@linkedin.com>
14 lines
514 B
Makefile
14 lines
514 B
Makefile
# docker image for fpm-quagga
|
|
|
|
DOCKER_FPM_QUAGGA = docker-fpm-quagga.gz
|
|
$(DOCKER_FPM_QUAGGA)_PATH = $(DOCKERS_PATH)/docker-fpm-quagga
|
|
$(DOCKER_FPM_QUAGGA)_DEPENDS += $(QUAGGA) $(SWSS)
|
|
$(DOCKER_FPM_QUAGGA)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE)
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_FPM_QUAGGA)
|
|
|
|
$(DOCKER_FPM_QUAGGA)_CONTAINER_NAME = bgp
|
|
$(DOCKER_FPM_QUAGGA)_RUN_OPT += --net=host --privileged -t
|
|
$(DOCKER_FPM_QUAGGA)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
|
|
$(DOCKER_FPM_QUAGGA)_BASE_IMAGE_FILES += vtysh:/usr/bin/vtysh
|