* Fix links of debian git server (#1755)
* [dockers] Prevent apt-get from installing suggested and recommended packages by default (#1666)
* [cfggen]: Fix build by fixing pyangbind version (#1633)
* [Ingrasys] Add platform support for S9280-64X with Barefoot ASIC
* Revert "[Ingrasys] Add platform support for S9280-64X with Barefoot ASIC"
This reverts commit 29b9d904f6
.
Separate S9280-64X platform driver files into a new PR
16 lines
618 B
Makefile
16 lines
618 B
Makefile
# docker image for database
|
|
|
|
DOCKER_DATABASE = docker-database.gz
|
|
$(DOCKER_DATABASE)_PATH = $(DOCKERS_PATH)/docker-database
|
|
$(DOCKER_DATABASE)_DEPENDS += $(REDIS_TOOLS) $(REDIS_SERVER)
|
|
$(DOCKER_DATABASE)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE)
|
|
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 /etc/sonic:/etc/sonic:ro
|
|
|
|
$(DOCKER_DATABASE)_BASE_IMAGE_FILES += redis-cli:/usr/bin/redis-cli
|
|
$(DOCKER_DATABASE)_FILES += $(CONFIGDB_LOAD_SCRIPT)
|