blob: c692d6a14f820f5afb0a5656e02b1f0817dba57d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
version: '2'
networks:
default:
driver: bridge
driver_opts:
com.docker.network.driver.mtu: ${MTU}
services:
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
|