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>
16 lines
589 B
Makefile
16 lines
589 B
Makefile
# docker image for lldp agent
|
|
|
|
DOCKER_LLDP_SV2 = docker-lldp-sv2.gz
|
|
$(DOCKER_LLDP_SV2)_PATH = $(DOCKERS_PATH)/docker-lldp-sv2
|
|
$(DOCKER_LLDP_SV2)_DEPENDS += $(LLDPD)
|
|
$(DOCKER_LLDP_SV2)_PYTHON_WHEELS += $(DBSYNCD_PY2)
|
|
$(DOCKER_LLDP_SV2)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE)
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_LLDP_SV2)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_LLDP_SV2)
|
|
|
|
$(DOCKER_LLDP_SV2)_CONTAINER_NAME = lldp
|
|
$(DOCKER_LLDP_SV2)_RUN_OPT += --net=host --privileged -t
|
|
$(DOCKER_LLDP_SV2)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
|
|
$(DOCKER_LLDP_SV2)_BASE_IMAGE_FILES += lldpctl:/usr/bin/lldpctl
|