blob: 9133d58604a11b622cefee88fb075a1751340ba1 (
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
|
version: '3'
services:
netopeer2:
image: nexus3.onap.org:10001/onap/integration/simulators/netconf-pnp-simulator:2.8.6
container_name: netconf-pnp-pmsh
restart: always
ports:
- "830:830"
- "6513:6513"
volumes:
- ./:/config/modules/pnf-subscriptions
sftp:
container_name: sftpserver
image: atmoz/sftp
ports:
- "2222:22"
volumes:
- /host/upload:/home/admin
command: admin:admin:1001
opendaylight:
image: blueonap/opendaylight:v0.12.1-1
container_name: opendaylight
ports:
- "8101:8101"
- "8181:8181"
- "6666:6666"
environment:
- KARAF_FEATURES_BOOT=odl-restconf-all,odl-netconf-connector-all
volumes:
- ./app_config/tls:/config/tls
|