You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
687 B
13 lines
687 B
5 years ago
|
FROM debian:buster-slim
|
||
|
ENV FRR_DAEMONS zebra bgpd ospfd ospf6d ripd ripngd isisd pimd ldpd nhrpd eigrpd babeld sharpd pbrd bfdd
|
||
|
COPY confint.sh /confint.sh
|
||
|
COPY ENTRYPOINT.sh /ENTRYPOINT.sh
|
||
|
RUN chmod +x /ENTRYPOINT.sh /confint.sh
|
||
|
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends frr frr-rpki-rtrlib iputils-ping busybox vim-tiny
|
||
|
RUN ln -s /usr/bin/vim.tiny /usr/bin/vim
|
||
|
ENTRYPOINT ["/ENTRYPOINT.sh"]
|
||
|
|
||
|
# docker run -tid --cap-add=NET_ADMIN --cap-add=NET_RAW --cap-add=SYS_ADMIN --name frr-buster frr-buster
|
||
|
# https://github.com/iwaseyusuke/docker-frr
|
||
|
# https://docs.docker.com/engine/reference/run/#runtime-privilege-and-linux-capabilities
|