8506826348
* Update Redis DB start options for multi-asic and chassis cases Starting with Redis 7.0 (specifically, redis/redis#9034), setting a custom `--bind` address on the command line no longer disables protected mode (which blocks connections from non-localhost IP addresses unless a password is set). For multi-asic and chassis database DBs, we currently specify a non-localhost IP address and do not specify any password, which means this change would break things there. To work around this, if we are specifying a non-localhost IP address on the command line, then disable protected mode. * Clean up debug pacakge list for docker-teamd The debug pacakges for swss and libswsscommon are already installed by docker-swss-layer-bookworm and docker-config-engine-bookworm, so they don't need to be specified here again. Signed-off-by: Saikrishna Arcot <sarcot@microsoft.com>
38 lines
1.4 KiB
Makefile
38 lines
1.4 KiB
Makefile
# docker image for database
|
|
|
|
DOCKER_DATABASE_STEM = docker-database
|
|
DOCKER_DATABASE = $(DOCKER_DATABASE_STEM).gz
|
|
DOCKER_DATABASE_DBG = $(DOCKER_DATABASE_STEM)-$(DBG_IMAGE_MARK).gz
|
|
|
|
$(DOCKER_DATABASE)_DEPENDS += $(LIBSWSSCOMMON) \
|
|
$(SONIC_DB_CLI) \
|
|
$(LIB_SONIC_DASH_API)
|
|
|
|
$(DOCKER_DATABASE)_PATH = $(DOCKERS_PATH)/$(DOCKER_DATABASE_STEM)
|
|
|
|
$(DOCKER_DATABASE)_DBG_DEPENDS = $($(DOCKER_CONFIG_ENGINE_BOOKWORM)_DBG_DEPENDS)
|
|
|
|
$(DOCKER_DATABASE)_DBG_IMAGE_PACKAGES = $($(DOCKER_CONFIG_ENGINE_BOOKWORM)_DBG_IMAGE_PACKAGES)
|
|
|
|
$(DOCKER_DATABASE)_LOAD_DOCKERS += $(DOCKER_CONFIG_ENGINE_BOOKWORM)
|
|
|
|
$(DOCKER_DATABASE)_VERSION = 1.0.0
|
|
$(DOCKER_DATABASE)_PACKAGE_NAME = database
|
|
|
|
SONIC_DOCKER_IMAGES += $(DOCKER_DATABASE)
|
|
SONIC_BOOKWORM_DOCKERS += $(DOCKER_DATABASE)
|
|
SONIC_INSTALL_DOCKER_IMAGES += $(DOCKER_DATABASE)
|
|
|
|
SONIC_DOCKER_DBG_IMAGES += $(DOCKER_DATABASE_DBG)
|
|
SONIC_BOOKWORM_DBG_DOCKERS += $(DOCKER_DATABASE_DBG)
|
|
SONIC_INSTALL_DOCKER_DBG_IMAGES += $(DOCKER_DATABASE_DBG)
|
|
|
|
$(DOCKER_DATABASE)_CONTAINER_NAME = database
|
|
$(DOCKER_DATABASE)_RUN_OPT += --privileged -t
|
|
$(DOCKER_DATABASE)_RUN_OPT += -v /etc/sonic:/etc/sonic:ro
|
|
$(DOCKER_DATABASE)_RUN_OPT += -v /etc/timezone:/etc/timezone:ro
|
|
|
|
$(DOCKER_DATABASE)_BASE_IMAGE_FILES += redis-cli:/usr/bin/redis-cli
|
|
$(DOCKER_DATABASE)_FILES += $(SYSCTL_NET_CONFIG) $(SUPERVISOR_PROC_EXIT_LISTENER_SCRIPT)
|
|
$(DOCKER_DATABASE)_FILES += $(UPDATE_CHASSISDB_CONFIG_SCRIPT)
|