e2cc409f8a
- Create /var/run/redis/ folder on the host - Install Python client for Redis on the host - Mount /var/run/redis/ as read/write from host for all dockers - Enable accessing the database everywhere including on the host and from remote Signed-off-by: Shuotian Cheng <shuche@microsoft.com>
15 lines
475 B
Makefile
15 lines
475 B
Makefile
# docker image for fpm
|
|
|
|
DOCKER_FPM = docker-fpm.gz
|
|
$(DOCKER_FPM)_PATH = $(DOCKERS_PATH)/docker-fpm
|
|
$(DOCKER_FPM)_DEPENDS += $(QUAGGA) $(SWSS)
|
|
$(DOCKER_FPM)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE)
|
|
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 += -v /etc/sonic:/etc/sonic:ro
|
|
|
|
$(DOCKER_FPM)_BASE_IMAGE_FILES += vtysh:/usr/bin/vtysh
|