Age | Commit message (Collapse) | Author | Files | Lines |
|
Two problems:
The docker-compose scripts are pulling in an older version
of mariadb that doesn't have the JSON functions we need.
We can use 10.3.11, which is the latest stable release.
The DB user needs to have the SUPER privilege so that mdbc
can add database triggers.
Change-Id: Ic9b2daeb0196a2134f9260b39a41a4a10be01a06
Issue-ID: MUSIC-266
Signed-off-by: Rob Daugherty <rd472p@att.com>
|
|
This is a two site installation, with a single cassandra
container, two mariadb containers, and two mdbc-server
containers.
Server 1 exposes port 30001 and server 2 exposes port 30002.
To build the docker images, first build mdbc software
normally, then use the 'docker' maven profile:
mvn -P docker clean install
To bring up the environment:
cd mdbc-packages/mdbc-docker/compose/two-sites
docker-compose up
Change-Id: I10155ebf47dec4e787d44b23886ab8453ac4315f
Issue-ID: MUSIC-263
Signed-off-by: Rob Daugherty <rd472p@att.com>
|
|
This is a single site installation, with a cassandra container,
a mariadb container, and an mdbc-server container.
To build the docker images, first build mdbc software normally,
then use the 'docker' maven profile:
mvn -P docker
To bring up the environment:
cd mdbc-packages/mdbc-docker/compose/one-site
docker-compose up
Change-Id: Ie48487fc6c7853b80017dfa45aff52801da52cf0
Issue-ID: MUSIC-224
Signed-off-by: Rob Daugherty <rd472p@att.com>
|