Add multiple lines to the specified file in Dockerfile, pay attention to the "$" symbol after echo [root@master01 ovn-node]# cat dockerfile FROM ovn-node:2.11.2 # sed deletes the specified line RUN sed -i '53d' /root/start-ovs.sh # Use echo to add multiple lines of content RUN echo $'OVERLAY_ENDPOINT=`hostname -i`\n\ ovs-vsctl set open . external-ids:ovn-encap-ip=${OVERLAY_ENDPOINT}\n\ \n\ # create a bridge , then mapping outside port\n\ ovs-vsctl add-br br-ex\n\ ovs-vsctl set Open_vSwitch . external-ids:ovn-bridge-mappings=phyNet:br-ex\n\ \n\ # add nic ovs-vsctl add-port br-ex ${OVN_PHYNET_NIC}\n\ \n\ tail -f /var/log/openvswitch/ovs-vswitchd.log\n'\ >> /root/start-ovs.sh CMD ["/bin/bash","/root/start-ovs.sh"] Result: Note that the "#" comment line in the multi-line text is not entered into the specified file [root@master01 ovn-node]# cat /root/start-ovs.sh # Set remote ovn-sb for ovn-controller to connect to ovs-vsctl set open . external-ids:ovn-remote=tcp:${OVN_SB_SERVICE_HOST}:${OVN_SB_SERVICE_PORT} ovs-vsctl set open . external-ids:ovn-encap-type=geneve OVERLAY_ENDPOINT=`hostname -i` ovs-vsctl set open . external-ids:ovn-encap-ip=${OVERLAY_ENDPOINT} ovs-vsctl add-br br-ex ovs-vsctl set Open_vSwitch . external-ids:ovn-bridge-mappings=phyNet:br-ex ovs-vsctl add-port br-ex ${OVN_PHYNET_NIC} tail -f /var/log/openvswitch/ovs-vswitchd.log The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
>>: Detailed explanation of multi-version concurrency control of large objects in MySQL
HTML reuse is a term that is rarely mentioned. Tod...
Preface vsftp is an easy-to-use and secure ftp se...
Table of contents How to create a Pod? kubectl to...
Scenario How to correctly render lists up to 1000...
This article shares the specific code for JavaScr...
When building a website, HTML language may seem un...
This article example shares the specific code of ...
This article uses the element official website an...
Today, when testing the null value, I found a sma...
Vertical table Vertical table splitting means spl...
Three ways to define functions in JS Let me expla...
We have introduced how to create a waterfall layo...
Table of contents Query Background 1. Like query ...
Purpose: 1. In order to map the server's exte...
You can use the command: docker tag [image id] [n...