随笔分类 -  Docker

摘要:直接使用浏览器来用Docker http://play-with-docker.cn/ 阅读全文
posted @ 2018-05-04 09:55 Javi 阅读(224) 评论(0) 推荐(0)
摘要:Creating a .NET Core project If you already have an existing .NET Core project you are more than welcome to use it. Otherwise create a new empty ASP.N 阅读全文
posted @ 2017-06-29 16:44 Javi 阅读(350) 评论(0) 推荐(0)
摘要:Context As companies are continuously seeking ways to become more Agile and embracing DevOps culture and practices, new designs principles have emerge 阅读全文
posted @ 2017-06-28 09:55 Javi 阅读(461) 评论(0) 推荐(0)
摘要:本地调试或者发布到本地docker, 非常的简单,新建个core项目,然后添加docker support 就可以调试了 但问题出在发布 1.发布到本地:debug -> release 再run 一下,命令 docker run -p 8080:80 -it --rm image localhos 阅读全文
posted @ 2017-06-26 16:41 Javi 阅读(300) 评论(0) 推荐(0)
摘要:Welcome to Docker for Windows! Docker is a full development platform for creating containerized apps, and Docker for Windows is the best way to get st 阅读全文
posted @ 2017-06-16 15:46 Javi 阅读(359) 评论(0) 推荐(0)
摘要:1.停止所有的container,这样才能够删除其中的images: docker stop $(docker ps -a -q) 如果想要删除所有container的话再加一个指令: docker rm $(docker ps -a -q) 2.查看当前有些什么images docker imag 阅读全文
posted @ 2017-06-15 11:40 Javi 阅读(470) 评论(0) 推荐(0)