运行以下命令失败:
sudo docker run -p unix:///tmp/file.sock:44444 -d image_name
Run Code Online (Sandbox Code Playgroud)
我的端口转发语法有问题还是这样的配置不可能?
我正在使用谷歌可视化图表,这在IE8中不能很好地呈现,并且在IE6中根本不起作用.
我添加了谷歌浏览器框架,如果用户安装插件谷歌可视化工作完美无缺.
有没有办法可以强制IE用户安装GFC?现在它是可选的.我阅读了文档,似乎没有办法通过GFCInstall.check()函数调用来配置它.
这是我目前的代码:
<!--[if IE]>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<style>
.chromeFrameInstallDefaultStyle {
border: 5px solid blue;
top:55%;
}
</style>
<script>
// The conditional ensures that this code will only execute in IE,
// Therefore we can use the IE-specific attachEvent without worry
window.attachEvent("onload", function() {
CFInstall.check({
mode: "inline"
});
});
</script>
<![endif]-->
Run Code Online (Sandbox Code Playgroud)