summaryrefslogtreecommitdiffstats
path: root/vnfmarket-be/deployment/install/docker-compose.yml
blob: caf70cd1282c5d84f28609f069522e33a710a0a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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