blob: 572368759a88a075338c5cc6663b08de66d9a7ff (
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: "${NEXUS_REPO}/onap/refrepo/postgres:${POSTGRES_TAG}"
mem_limit: "1g"
memswap_limit: "1g"
ports:
- "5432:5432"
refrepo:
container_name: "refrepo"
restart: "always"
image: "${NEXUS_REPO}/onap/refrepo:${REFREPO_TAG}"
ports:
- "8702:8702"
environment:
POSTGRES_IP: postgres
links:
- postgres
|