diff options
author | piclose <pc457b@intl.att.com> | 2017-02-21 14:52:45 +0100 |
---|---|---|
committer | piclose <pc457b@intl.att.com> | 2017-02-21 14:53:09 +0100 |
commit | c4e65037584636b7a3b3c9920fd501126fb68fcc (patch) | |
tree | f914324c859ff53b1da12b84180d9baec1dc4461 /docker-compose.yml | |
parent | fad0de5e6dd7aa1cb079e4a2d7b3baa03efc23aa (diff) |
Initial OpenECOMP MSO Docker Configuration commit
Change-Id: Iaabe6803a6087f59726e290cb75aef2f755097d9
Signed-off-by: piclose <pc457b@intl.att.com>
Diffstat (limited to 'docker-compose.yml')
-rw-r--r-- | docker-compose.yml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..d176228 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,27 @@ +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 + +mso: + image: ecomp/mso + ports: + - "3904:3904" + - "3905:3905" + - "8080:8080" + - "9990:9990" + volumes: + - ./volumes/mso/chef-config:/shared + links: + - mariadb:mariadb + environment: + - MYSQL_ROOT_PASSWORD=password + hostname: + mso.mso.testlab.openecomp.org
\ No newline at end of file |