#Containers

Inversion of Control Containers and the Dependency Injection pattern

https://martinfowler.com/articles/injection.htmlOneoftheentertainingthingsabouttheenterpriseJavaworldisthehugeamountofactivityinbuildingalternativestothemainstr...

输入docker ps 报错信息处理Get http:///var/run/docker.sock/v1.19/containers/json: dial unix /var/run/docker.sock: permission denied.

完整错误信息Gethttp:///var/run/docker.sock/v1.19/containers/json:dialunix/var/run/docker.sock:permissiondenied.AreyoutryingtoconnecttoaTLS-enableddaemonwithoutTLS?原因:...

Kubernetes的初始化容器initContainers

initContainers是一种专用的容器,在应用程序容器启动之前运行,可以包括一些应用程序镜像中不存在的实用工具和安装脚本,可以完成应用的必要数据初始化等工作。总的来说就是在正式的容器启动之前做一些准备工作的。    例如一个应用容器挂载的volume目录需要一些必不可少的初...