我是Docker的新手,我在使用Docker的Toolbox版本。我尝试以下命令:
docker run -it --name myflask1 -p 192.168.99.100:5000 -v ${PWD}:/app python:3.7 bash
出现以下消息:
invalid publish opts format (should be name=value but got 'docker-machine')
解决方案是什么?
答案 0 :(得分:0)
您的-p
选项看起来很糟糕。格式应为:
-p ip:hostPort:containerPort
,-p ip::containerPort
,-p hostPort:containerPort
,-p containerPort
。