docker-config repo is holding the docker-compose file, along
with all the config files required for mso.
Change-Id: I0dec96fd6f767d93154e24611b47373bd2245226
Signed-off-by: Alexis de Talhouët <adetalhouet89@gmail.com>
+++ /dev/null
-version: '2'
-
-services:
-  mariadb:
-    image: mariadb:10.1.11
-    ports:
-      - "3306"
-    volumes:
-      - ./volumes/mariadb/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d
-      - ./volumes/mariadb/conf.d:/etc/mysql/conf.d
-    environment:
-      - MYSQL_ROOT_PASSWORD=password
-    hostname:
-      db.mso.testlab.openecomp.org
-    logging:
-      driver: "json-file"
-      options:
-        max-size: "30m"
-        max-file: "5"      
-      
-  mso:
-    image: openecomp/mso
-    ports:
-      - "3904:3904"
-      - "3905:3905"    
-      - "8080:8080"
-      - "9990:9990"    
-    volumes:
-      - ./volumes/mso/chef-config:/shared
-    environment:
-      - MYSQL_ROOT_PASSWORD=password
-    hostname:
-      mso.mso.testlab.openecomp.org
-