diff options
author | Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com> | 2018-09-14 20:07:46 +0000 |
---|---|---|
committer | Dan Timoney <dt5972@att.com> | 2018-09-17 16:31:17 +0000 |
commit | ed66bb6ffc5d57022b2f18ed563d01b72ecef341 (patch) | |
tree | 447ce0625187ffdf250e1ffe8724e3871b1bec37 /ms/controllerblueprints/distribution/src/main/dc | |
parent | 4f44000fef9608150811e0b9f9b140c580f5822b (diff) |
Controller Blueprints Microservice
Change database to mariadb in docker compose and spring boot version upgrade
Change-Id: Icd73b8110aea2a1b90ab29217b9c5e30817e6c06
Issue-ID: CCSDK-574
Signed-off-by: Muthuramalingam, Brinda Santh(bs2796) <bs2796@att.com>
Diffstat (limited to 'ms/controllerblueprints/distribution/src/main/dc')
-rw-r--r-- | ms/controllerblueprints/distribution/src/main/dc/docker-compose.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ms/controllerblueprints/distribution/src/main/dc/docker-compose.yaml b/ms/controllerblueprints/distribution/src/main/dc/docker-compose.yaml index 493d4381..3c146469 100644 --- a/ms/controllerblueprints/distribution/src/main/dc/docker-compose.yaml +++ b/ms/controllerblueprints/distribution/src/main/dc/docker-compose.yaml @@ -2,8 +2,8 @@ version: '3.3' services:
db:
- image: mysql:5.7.22
- container_name: cb-mysql
+ image: mariadb:latest
+ container_name: cb-mariadb
ports:
- "3307:3306"
volumes:
|