Configuration of components¶
Selecting a database type¶
By editing .custom/docker-compose-services.override.yaml
Set replicas to 1 for chosen DB type, or both to 0 if you want to run an external DB inside your host system.
## This is a final override file for services stack
## Add your own customizations
## docker network create -d overlay lb-net
services:
# default Postgresql DB
database:
# to disable set replicas to 0
deploy:
replicas: 1
# MySQL DB
database-mysql:
# to disable set replicas to 0
deploy:
replicas: 1
Disable Redis¶
By editing .custom/docker-compose-services.override.yaml
## This is a final override file for services stack
## Add your own customizations
## docker network create -d overlay lb-net
services:
redis:
# to disable set replicas to 0
deploy:
replicas: 0
ElasticSearch and Full-text Search¶
ElasticSearch is used as a search engine for full-text search capabilities (EE edition only).
For comprehensive information on ElasticSearch setup, configuration, enabling/disabling search, and indexing, see Full-text Search.