随笔分类 -  docker

摘要:Docker Run We can then override the environment variables set in the Docker file when running the image by using the -e flag: 对应.netcore应用程序,设置 ASPNET 阅读全文
posted @ 2019-04-11 10:52 lishidefengchen
摘要:#linux指令# printenv 阅读全文
posted @ 2019-04-11 10:46 lishidefengchen
摘要:docker: Error response from daemon: Get https://registry-1.docker.io/v2/: net/http: request canceled (Client.Timeout exceeded while awaiting headers). 阅读全文
posted @ 2019-04-08 17:15 lishidefengchen
摘要:docker save 对应 docker load docker export 对应 docker import 在导出的包的环境中的docker版本跟需要导入的环境中的docker版本不一致也可能导致这个原因 阅读全文
posted @ 2019-04-08 15:20 lishidefengchen
摘要:1、https://aspnetboilerplate.com/Templates 2、后端项目发布,在publish中abp默认已经存在DockerFile文件 3、修改后端文件中的DockerFile文件 默认的值为 FROM microsoft/aspnetcore:2.0.1。但我当前的这个 阅读全文
posted @ 2019-03-25 15:19 lishidefengchen
摘要:抛砖引玉-- sudo docker rm $(sudo docker ps -a -q) 批量删除某一类镜像 docker rmi $(docker images plm_*:v19.* -q) 批量删除exited状态的容器 docker rm $(docker ps --filter "sta 阅读全文
posted @ 2019-03-21 18:27 lishidefengchen