The problem of building docker images based on native frr code #14179
-
I git clone the code, and build an ubuntu 20.04 container image "frr-ubuntu20", then run it. However I got some error, could someone help me to deal with this? root@ubuntu20:/home# git clone https://https://github.com/FRRouting/frr.git root@ubuntu20:/home/frr# docker exec -it frr-ubuntu20 bash For comparison, I downloaded the official image version frrouting/frr:v8.2.2 to run directly, which is normal. root@ubuntu20:/home/frr# docker exec -it clab-frrlab-router1 vtysh Hello, this is FRRouting (version 8.2.2_git). router1# root@ubuntu20:/home/frr# docker exec -it clab-frrlab-router1 bash |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Ubuntu Docker builds are not well maintained, please use Alpine images. There are prepared build scripts, and even more they are used for building production (release) images. Ubuntu images are just for CI, it doesn't run daemons, and |
Beta Was this translation helpful? Give feedback.
Ubuntu Docker builds are not well maintained, please use Alpine images. There are prepared build scripts, and even more they are used for building production (release) images. Ubuntu images are just for CI, it doesn't run daemons, and
docker-start
is not adopted for what you are expected.