e6bb4b20a1
- [swss]: Update sairedis/swss/common submodules - [orchagent]: Mount /var/log folder and use the folder to save recording files - [orchagent]: Use -d to specify the folder path
19 lines
954 B
Makefile
19 lines
954 B
Makefile
# docker image for orchagent
|
|
|
|
DOCKER_ORCHAGENT_CAVM = docker-orchagent-cavm.gz
|
|
$(DOCKER_ORCHAGENT_CAVM)_PATH = $(DOCKERS_PATH)/docker-orchagent
|
|
$(DOCKER_ORCHAGENT_CAVM)_DEPENDS += $(SWSS) $(REDIS_TOOLS)
|
|
$(DOCKER_ORCHAGENT_CAVM)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE)
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_ORCHAGENT_CAVM)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_ORCHAGENT_CAVM)
|
|
|
|
$(DOCKER_ORCHAGENT_CAVM)_CONTAINER_NAME = swss
|
|
$(DOCKER_ORCHAGENT_CAVM)_RUN_OPT += --net=host --privileged -t
|
|
$(DOCKER_ORCHAGENT_CAVM)_RUN_OPT += -v /etc/network/interfaces:/etc/network/interfaces:ro
|
|
$(DOCKER_ORCHAGENT_CAVM)_RUN_OPT += -v /etc/network/interfaces.d/:/etc/network/interfaces.d/:ro
|
|
$(DOCKER_ORCHAGENT_CAVM)_RUN_OPT += -v /host/machine.conf:/host/machine.conf:ro
|
|
$(DOCKER_ORCHAGENT_CAVM)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
$(DOCKER_ORCHAGENT_CAVM)_RUN_OPT += -v /var/log:/var/log:rw
|
|
|
|
$(DOCKER_ORCHAGENT_CAVM)_BASE_IMAGE_FILES += swssloglevel:/usr/bin/swssloglevel
|