We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
0 parents commit abe7dbfCopy full SHA for abe7dbf
Dockerfile
@@ -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
@@ -0,0 +1,9 @@
+build_tag := "8.4.1"
+.PHONY: build
+build:
+ docker build -t ghcr.io/wide-vsix/vsix-frr:$(build_tag) .
+.PHONY: push
+push:
9
+ docker push ghcr.io/wide-vsix/vsix-frr:$(build_tag)
README.md
@@ -0,0 +1,12 @@
+# vsix-frr
+最近(2023/03)現在、FRRouting community公式のDocker imageが公開されるようになった。
+https://quay.io/repository/frrouting/frr?tab=tags&tag=latest
+tinet等々で使いやすいように下記の通り変更をした。
10
11
+- daemonsの書き換え
12
+ - よく使うbgpdとospf6dのみ有効化
0 commit comments