-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
62 lines (59 loc) · 1.5 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
57
58
59
60
61
62
version: '2.2'
services:
frr:
build:
context: https://github.com/frrouting/frr.git
dockerfile: docker/alpine/Dockerfile
services:
isis50:
# build:
# context: https://github.com/frrouting/frr.git
# dockerfile: docker/alpine/Dockerfile
image: choppsv1/isisd
cap_add: [ "NET_ADMIN", "NET_RAW", "SYS_ADMIN" ]
sysctls: [ "net.ipv6.conf.all.forwarding=1" ]
networks:
net15:
ipv4_address: 192.168.15.50
isis60:
# build:
# context: https://github.com/frrouting/frr.git
# dockerfile: docker/alpine/Dockerfile
image: choppsv1/isisd
cap_add: [ "NET_ADMIN", "NET_RAW", "SYS_ADMIN" ]
sysctls: [ "net.ipv6.conf.all.forwarding=1" ]
networks:
net16:
ipv4_address: 192.168.16.60
isis70:
# build:
# context: https://github.com/frrouting/frr.git
# dockerfile: docker/alpine/Dockerfile
image: choppsv1/isisd
cap_add: [ "NET_ADMIN", "NET_RAW", "SYS_ADMIN" ]
sysctls: [ "net.ipv6.conf.all.forwarding=1" ]
networks:
net17:
ipv4_address: 192.168.17.70
networks:
net15:
driver: bridge
# enable_ipv6: true
ipam:
config:
- subnet: 192.168.15.0/24
gateway: 192.168.15.1
net16:
driver: bridge
# enable_ipv6: true
ipam:
config:
- subnet: 192.168.16.0/24
gateway: 192.168.16.1
net17:
driver: bridge
# enable_ipv6: true
ipam:
config:
- subnet: 192.168.17.0/24
gateway: 192.168.17.1