Adding docker-compose 01/5401/1
authorJulienBe <jb379x@att.com>
Thu, 9 Feb 2017 14:11:47 +0000 (06:11 -0800)
committerJulienBe <jb379x@att.com>
Thu, 9 Feb 2017 14:11:55 +0000 (06:11 -0800)
Change-Id: I84fc67e1c0c83f2831549ac10acd8bfe22315ff6
Signed-off-by: JulienBe <jb379x@att.com>
docker-compose.yml [new file with mode: 0644]

diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644 (file)
index 0000000..c7d9b49
--- /dev/null
@@ -0,0 +1,34 @@
+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: ecomp/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
+