34ea91349c
* Single image * Fix review comments * Update syncd service. Add HW mgmt to Mellanox single image. * Add single image template for Broadcom platform. SKU should be provided during configure: make configure PLATFORM=broadcom SKU=Force10-S6000 * Add single image template for Cavium platform. SKU should be provided during configure: make configure PLATFORM=cavium SKU=AS7512 * Add description to sonic_debian_extension.j2 file.
14 lines
482 B
Makefile
14 lines
482 B
Makefile
# docker image for fpm
|
|
|
|
DOCKER_FPM = docker-fpm.gz
|
|
$(DOCKER_FPM)_PATH = $(DOCKERS_PATH)/docker-fpm
|
|
$(DOCKER_FPM)_DEPENDS += $(QUAGGA) $(SWSS) $(SONIC_CONFIG_ENGINE)
|
|
$(DOCKER_FPM)_LOAD_DOCKERS += $(DOCKER_BASE)
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_FPM)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_FPM)
|
|
|
|
$(DOCKER_FPM)_CONTAINER_NAME = bgp
|
|
$(DOCKER_FPM)_RUN_OPT += --net=host --privileged -t
|
|
$(DOCKER_FPM)_RUN_OPT += --volumes-from database
|
|
$(DOCKER_FPM)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|