如何从Docker容器中访问主机ARP记录?
我尝试将一个卷装入docker-compose文件中({1}),但是发现我无法使用/proc/net/arp:/proc/net/arp
来创建任何卷。然后,我尝试将其安装到/proc
之类的其他位置,但是如果我/proc/net/arp:/root/arp
,则从容器内部将表清空。
cat /root/arp
想法?
答案 0 :(得分:1)
如果添加特权模式并确保您处于主机联网模式,那么您应该会很好。这对我有用:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="RedirectToHTTPS" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="off" ignoreCase="true" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{REQUEST_URI}" redirectType="Permanent" appendQueryString="false" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>