blob: 3016189d99f789098eac125936ec721dab88850e (
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
version: '3'
networks:
tls-init-network:
volumes:
certs-volume:
services:
certs-init:
image: nexus3.onap.org:10001/onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0
extra_hosts:
#set worker IP with access to AAF
aaf-locate.onap: 10.183.35.177
aaf-cm.onap: 10.183.35.177
aaf-service.onap: 10.183.35.177
environment:
- aaf_locate_url=https://aaf-locate.onap:31111
- aaf_url_cm=https://aaf-cm.onap:31114
- aaf_url=https://aaf-service.onap:31110
networks:
- tls-init-network
volumes:
- certs-volume:/opt/app/osaaf
mongo:
image: mongo
restart: always
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: zXcVbN123!
MONGO_INITDB_DATABASE: pnf_simulator
networks:
- tls-init-network
volumes:
- ../../pnfsimulator/db:/docker-entrypoint-initdb.d
ports:
- "27017:27017"
mongo-express:
image: mongo-express
restart: always
ports:
- 8081:8081
networks:
- tls-init-network
environment:
ME_CONFIG_MONGODB_ADMINUSERNAME: root
ME_CONFIG_MONGODB_ADMINPASSWORD: zXcVbN123!
pnf-simulator:
image: nexus3.onap.org:10001/onap/org.onap.integration.simulators.pnfsimulator
ports:
- "5000:5000"
command: bash -c "
while [[ $$(ls -1 /app/store | wc -l) != '10' ]]; do echo 'Waiting for certs...'; sleep 3; done
&& export CLIENT_CERT_PASS=$$(cat /app/store/p12.pass)
&& export TRUST_CERT_PASS=$$(cat /app/store/trust.pass)
&& java -Dspring.config.location=file:/app/application.properties -cp /app/libs/*:/app/pnf-simulator.jar org.onap.pnfsimulator.Main
"
volumes:
- ../../pnfsimulator/logs:/var/log
- ../../pnfsimulator/templates:/app/templates
- ../../pnfsimulator/src/main/resources/application.properties:/app/application.properties
- certs-volume:/app/store
networks:
- tls-init-network
restart: on-failure
depends_on:
- certs-init
- mongo
- mongo-express
|