1.Ubuntu安装Docker
安装Docker看这篇文章
http://t.csdnimg.cn/IsSsJ
2.在docker中运行python代码
2.1搭建python环境
docker部署python环境看这篇文章
http://t.csdnimg.cn/TYz0G
2.2在python shell中运行python代码
2.2.1查看镜像
2.2.1启动python,厦门这个是格式,<>里面的就是images对应的,需要自行修改
docker run -itd <REPOSITORY>:<tag> /bin/sh
如下图
2.2.3 使用ps查看进程,看一下是否运行成功
docker ps
这样就运行成功了
2.2.4 打开python shell
docker exec -it py容器的id /bin/sh
在#后面输入python就会显示版本号,然后进入python shell界面,ctrl+D可以退出python
3.删除报错
1.
Error response from daemon: conflict: unable to delete 6cbe1053f244 (must be forced) - image is being used by stopped container
解决方案
docker ri 运行ID
docker rmi 容器id
这样就可以成功删除了