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
479 B
Makefile
14 lines
479 B
Makefile
# docker image for database
|
|
|
|
DOCKER_DATABASE = docker-database.gz
|
|
$(DOCKER_DATABASE)_PATH = $(DOCKERS_PATH)/docker-database
|
|
$(DOCKER_DATABASE)_DEPENDS += $(REDIS_SERVER) $(REDIS_TOOLS)
|
|
$(DOCKER_DATABASE)_LOAD_DOCKERS += $(DOCKER_BASE)
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_DATABASE)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_DATABASE)
|
|
|
|
$(DOCKER_DATABASE)_CONTAINER_NAME = database
|
|
$(DOCKER_DATABASE)_RUN_OPT += --net=host --privileged -t
|
|
$(DOCKER_DATABASE)_RUN_OPT += -v /var/run/redis
|
|
|