-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
55 lines (51 loc) · 1.13 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
version: '3.3'
services:
# unsure about starting the cli as a container
# just ssh in manually?
# cli:
# build: cli/.
# network_mode: host
# hostname: localhost
# stdin_open: true
# tty: true
# depends_on:
# - onos-controller
mininet:
image: ghcr.io/ng-cdi/intent-tester:latest
environment:
- MN_FLAGS=
- TOPO=/topologies/topo.py
privileged: true
network_mode: host
hostname: localhost
tty: true
volumes:
- ./batfish/:/batfish/
- ./mininet/:/topologies/
# ports:
# - 2001:2001
# - 3001:3001
# - 7123:7123
command: "/topologies/startup.sh"
depends_on:
- onos-controller
onos-controller:
image: ghcr.io/ng-cdi/demo-onos:latest
hostname: localhost
ports:
- 8101:8101
- 8181:8181
- 6633:6633
- 6653:6653
- 6640:6640
- 9876:9876
onos-reroute-api:
container_name: onos-reroute-api
image: mavi0/onos-reroute-api:latest
network_mode: host
hostname: localhost
tty: true
volumes:
- ./reroute-api/json:/reroute/json
environment:
- TERM=xterm-256color