78f90ac7a9
* Support readonly vtysh for sudoers (#7383) Why I did it Support readonly version of the command vtysh How I did it Check if the command starting with "show", and verify only contains single command in script. * Fix the type issue in rvtysh
29 lines
1.0 KiB
Makefile
29 lines
1.0 KiB
Makefile
# docker image for fpm-frr
|
|
|
|
DOCKER_FPM_FRR_STEM = docker-fpm-frr
|
|
DOCKER_FPM_FRR = $(DOCKER_FPM_FRR_STEM).gz
|
|
DOCKER_FPM_FRR_DBG = $(DOCKER_FPM_FRR_STEM)-$(DBG_IMAGE_MARK).gz
|
|
|
|
$(DOCKER_FPM_FRR)_PATH = $(DOCKERS_PATH)/docker-fpm-frr
|
|
|
|
$(DOCKER_FPM_FRR)_DEPENDS += $(FRR) $(SWSS)
|
|
$(DOCKER_FRR)_DBG_DEPENDS = $($(DOCKER_CONFIG_ENGINE)_DBG_DEPENDS)
|
|
$(DOCKER_FRR)_DBG_DEPENDS += $(FRR_DBG) $(SWSS_DBG) $(LIBSWSSCOMMON_DBG)
|
|
|
|
$(DOCKER_FRR)_DBG_IMAGE_PACKAGES = $($(DOCKER_CONFIG_ENGINE)_DBG_IMAGE_PACKAGES)
|
|
|
|
$(DOCKER_FPM_FRR)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE)
|
|
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_FPM_FRR)
|
|
|
|
SONIC_DOCKER_DBG_IMAGES += $(DOCKER_FPM_FRR_DBG)
|
|
|
|
$(DOCKER_FPM_FRR)_CONTAINER_NAME = bgp
|
|
$(DOCKER_FPM_FRR)_RUN_OPT += --net=host --privileged -t
|
|
$(DOCKER_FPM_FRR)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
$(DOCKER_FPM_FRR)_RUN_OPT += -v /etc/sonic/frr:/etc/frr:rw
|
|
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += vtysh:/usr/bin/vtysh
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += rvtysh:/usr/bin/rvtysh
|
|
$(DOCKER_FPM_FRR)_BASE_IMAGE_FILES += monit_bgp:/etc/monit/conf.d
|