Pawel Kadlubanski | 4326965 | 2018-06-15 16:13:45 +0200 | [diff] [blame] | 1 | version: '3' |
| 2 | |
| 3 | services: |
| 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 Migdal | ffd5266 | 2018-08-02 13:40:25 +0200 | [diff] [blame] | 11 | - ./json_schema:/json_schema |
Pawel Kadlubanski | 4326965 | 2018-06-15 16:13:45 +0200 | [diff] [blame] | 12 | 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 Migdal | ffd5266 | 2018-08-02 13:40:25 +0200 | [diff] [blame] | 25 | - ./netconf:/netconf |