diff options
author | Alexis de Talhouët <adetalhouet89@gmail.com> | 2017-03-08 10:15:44 -0500 |
---|---|---|
committer | Alexis de Talhouët <adetalhouet89@gmail.com> | 2017-03-08 10:15:44 -0500 |
commit | fa8b0c33032fc2a02c03f62f712b08263d159036 (patch) | |
tree | 038f871728767e281496274822761d053c79427f | |
parent | 78cb324780f4ca44238d14f84592edfd57999898 (diff) |
Remove duplicate docker-compose
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>
-rw-r--r-- | docker-compose.yml | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index eb089abead..0000000000 --- a/docker-compose.yml +++ /dev/null @@ -1,34 +0,0 @@ -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 - |