blob: cfc08635734fcc2b772752d23106424cd3f1cc4c (
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
|
version: '3'
services:
pnf-simulator:
container_name: pnf-simulator
image: nexus3.onap.org:10003/onap/pnf-simulator:latest
ports:
- "5000:5000"
volumes:
- ./logs:/var/log
- ./json_schema:/json_schema
env_file:
- ./config/netconf.env
depends_on:
- netopeer
netopeer:
container_name: netopeer
image: sysrepo/sysrepo-netopeer2:latest
ports:
- "830:830"
env_file:
- ./config/netconf.env
volumes:
- ./netconf:/netconf
|