Skip to content

Commit abe7dbf

Browse files
committed
initial
0 parents  commit abe7dbf

File tree

3 files changed

+29
-0
lines changed

3 files changed

+29
-0
lines changed

Dockerfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
FROM quay.io/frrouting/frr:8.4.1
2+
3+
LABEL maintainer="[email protected]"
4+
5+
# change daemons
6+
RUN sed -i s/bgpd=no/bgpd=yes/ /etc/frr/daemons
7+
RUN sed -i s/ospf6d=no/ospf6d=yes/ /etc/frr/daemons
8+

Makefile

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
build_tag := "8.4.1"
2+
3+
.PHONY: build
4+
build:
5+
docker build -t ghcr.io/wide-vsix/vsix-frr:$(build_tag) .
6+
7+
.PHONY: push
8+
push:
9+
docker push ghcr.io/wide-vsix/vsix-frr:$(build_tag)

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# vsix-frr
2+
3+
最近(2023/03)現在、FRRouting community公式のDocker imageが公開されるようになった。
4+
5+
https://quay.io/repository/frrouting/frr?tab=tags&tag=latest
6+
7+
8+
tinet等々で使いやすいように下記の通り変更をした。
9+
10+
11+
- daemonsの書き換え
12+
- よく使うbgpdとospf6dのみ有効化

0 commit comments

Comments
 (0)