| stevenvanrossem | 8372e2f | 2016-07-16 23:47:11 +0200 | [diff] [blame] | 1 | version: '2' |
| 2 | services: | ||||
| 3 | |||||
| 4 | son-emu: | ||||
| 5 | image: registry.sonata-nfv.eu:5000/son-emu | ||||
| 6 | container_name: son-emu | ||||
| 7 | volumes: | ||||
| 8 | - "/var/run/docker.sock:/var/run/docker.sock" | ||||
| 9 | network_mode: "host" | ||||
| 10 | pid: "host" | ||||
| 11 | privileged: true | ||||
| 12 | ports: | ||||
| 13 | #REST api | ||||
| 14 | - "5001:5001" | ||||
| 15 | entrypoint: | ||||
| 16 | - "/son-emu/utils/ci/entrypoint_docker-compose.sh" | ||||
| 17 | command: [python, src/emuvim/examples/son-monitor_default_topo.py] | ||||
| 18 | |||||
| 19 | |||||