blob: c6657e27df15fad924cd325142484f57bea2c0c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
version: '3'
services:
netconf-pnp-simulator:
image: nexus3.onap.org:10001/onap/integration/simulators/netconf-pnp-simulator:2.8.6
container_name: netconf-pnp-simulator
restart: always
ports:
- "830:830"
- "6513:6513"
volumes:
- ./:/config/modules
netconf-pnp-simulator-2:
image: nexus3.onap.org:10001/onap/integration/simulators/netconf-pnp-simulator:2.8.6
container_name: netconf-pnp-simulator-2
restart: always
ports:
- "831:830"
- "6514:6513"
volumes:
- ./:/config/modules
|