Best of ContainersDecember 2020

  1. 1
    Article
    Avatar of devtoDEV·5y

    Wait, Docker is deprecated in Kubernetes now? What do I do?

    Kubernetes is an infra orchestration tool that groups up many different compute resources such as virtual/physical machines. In this architecture, Docker, or a container runtime, is used only to run those applications in an actual host by being scheduled by Kubernetes control plane.

  2. 2
    Article
    Avatar of swlhThe Startup·5y

    Rules of Micro-Frontends

    This is an opinionated list of best practices when designing applications that follow the Micro-frontend pattern. Each “rule” should be examined… Each ‘rule’ is an example of how to use a Micro-Frontend to build a large web application.

  3. 3
    Article
    Avatar of k8sKubernetes·5y

    Blog: Don't Panic: Kubernetes and Docker

    Kubernetes is deprecating Docker as a container runtime after v1.20. Docker is still a useful tool for building containers, and the images that result from running docker build can still run in your Kubernetes cluster. If you’re rolling your own clusters, you will need to make changes to avoid your clusters breaking.

  4. 4
    Article
    Avatar of ossOpen Source Way·5y

    6 container concepts you need to understand

    Containers are the solution to problems inherited from monolithic architectures. Containers share a kernel with the host, which allows them to use fewer resources than a virtual machine (VM) would require. Kubernetes provides a holistic approach to managing containers across a cluster to enable features like autoscaling.