diff options
author | Murali <murali.p@huawei.com> | 2017-09-20 05:14:21 +0000 |
---|---|---|
committer | Murali <murali.p@huawei.com> | 2017-09-20 05:14:21 +0000 |
commit | b4b293f9436299e0d054d504095a462b0764a56c (patch) | |
tree | c18169cf9fc043b4630cd4770a09be7f0aaea759 /vnfmarket-be/deployment | |
parent | 88fa599e5ea22b09dddbb60543fa89543f9253c8 (diff) |
Add docker-compose file for vnf repository
Change-Id: I3ba3b4290058ca435bc7730c8423cd58ab1f9404
Jira:VNFSDK-92
Signed-off-by: Murali <murali.p@huawei.com>
Diffstat (limited to 'vnfmarket-be/deployment')
-rw-r--r-- | vnfmarket-be/deployment/install/docker-compose.yml | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/vnfmarket-be/deployment/install/docker-compose.yml b/vnfmarket-be/deployment/install/docker-compose.yml new file mode 100644 index 00000000..caf70cd1 --- /dev/null +++ b/vnfmarket-be/deployment/install/docker-compose.yml @@ -0,0 +1,20 @@ +postgres: + container_name: "postgres" + restart: "always" + image: "nexus3.onap.org:10001/onap/refrepo/postgres:latest" + mem_limit: "1g" + memswap_limit: "1g" + ports: + - "5432:5432" + + +refrepo: + container_name: "refrepo" + restart: "always" + image: "nexus3.onap.org:10001/onap/refrepo:1.0-STAGING-latest" + ports: + - "8702:8702" + environment: + POSTGRES_IP: postgres + links: + - postgres |