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>
14 lines
499 B
Makefile
14 lines
499 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)_BASE_IMAGE_FILES += redis-cli:/usr/bin/redis-cli
|