blob: cfc08635734fcc2b772752d23106424cd3f1cc4c [file] [log] [blame]
Pawel Kadlubanski43269652018-06-15 16:13:45 +02001version: '3'
2
3services:
4 pnf-simulator:
5 container_name: pnf-simulator
6 image: nexus3.onap.org:10003/onap/pnf-simulator:latest
7 ports:
8 - "5000:5000"
9 volumes:
10 - ./logs:/var/log
Marcin Migdalffd52662018-08-02 13:40:25 +020011 - ./json_schema:/json_schema
Pawel Kadlubanski43269652018-06-15 16:13:45 +020012 env_file:
13 - ./config/netconf.env
14 depends_on:
15 - netopeer
16
17 netopeer:
18 container_name: netopeer
19 image: sysrepo/sysrepo-netopeer2:latest
20 ports:
21 - "830:830"
22 env_file:
23 - ./config/netconf.env
24 volumes:
Marcin Migdalffd52662018-08-02 13:40:25 +020025 - ./netconf:/netconf