-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (56 loc) · 1.55 KB
/
docker-compose.yml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
version: '2'
services:
influxdb:
command: influxd -config /etc/influxdb/influxdb.conf
network_mode: host
image: influxdb:1.3
volumes:
- ./conf/influxdb.conf:/etc/influxdb/influxdb.conf
- /var/lib/influxdb
ports:
- "8086:8086"
grafana:
image: quay.io/viniciusarcanjo/grafana:sdnlg
network_mode: host
volumes:
- /var/lib/grafana
ports:
- "3000:3000"
depends_on:
- "influxdb"
environment:
- "GF_PATHS_PLUGINS=/data/grafana/plugins"
kytos:
image: ajoaoff/sdn-lg
network_mode: host
command: kytosd -f -E
tty: true
stdin_open: true
ports:
- "6633:6633"
- "6653:6653"
- "8181:8181"
volumes:
- ./kytos.conf:/etc/kytos/kytos.conf
- ./flow_stats:/var/lib/kytos/napps/amlight/flow_stats
- ./coloring/:/var/lib/kytos/napps/amlight/coloring
- ./kytos_courier/:/var/lib/kytos/napps/amlight/kytos_courier
- ./scheduler/:/var/lib/kytos/napps/amlight/scheduler
- ./sdntrace_cp/:/var/lib/kytos/napps/amlight/sdntrace_cp
- ./sdntrace/:/var/lib/kytos/napps/amlight/sdntrace
ofp_sniffer:
image: quay.io/viniciusarcanjo/ofp_sniffer:dev
command: /bin/bash -c 'python3.6 /opt/ofp_sniffer/ofp_sniffer.py -i lo -S -I'
privileged: true
stdin_open: true
tty: true
# build:
# context: ./ofp_sniffer/
# dockerfile: Dockerfile.ofp_sniffer
network_mode: host
volumes:
- ./ofp_sniffer:/opt/ofp_sniffer
environment:
PYTHON: /usr/bin/python3.6
depends_on:
- "influxdb"