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>
12 lines
421 B
Makefile
12 lines
421 B
Makefile
# docker image for fpm-gobgp
|
|
|
|
DOCKER_FPM_GOBGP = docker-fpm-gobgp.gz
|
|
$(DOCKER_FPM_GOBGP)_PATH = $(DOCKERS_PATH)/docker-fpm-gobgp
|
|
$(DOCKER_FPM_GOBGP)_DEPENDS += $(GOBGP)
|
|
$(DOCKER_FPM_GOBGP)_LOAD_DOCKERS += $(DOCKER_FPM)
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_FPM_GOBGP)
|
|
|
|
$(DOCKER_FPM_GOBGP)_CONTAINER_NAME = bgp
|
|
$(DOCKER_FPM_GOBGP)_RUN_OPT += --net=host --privileged -t
|
|
$(DOCKER_FPM_GOBGP)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|