Best of Containers — December 2023
- 1
- 2
AWS Tip·2y
Kubernetes Architecture
Kubernetes is a powerful open-source container orchestration platform that automates deployment, scaling, and management of containerized applications. It utilizes a master-worker node model and consists of components like kube-apiserver, etcd, kube-scheduler, kube-controller-manager, and cloud-controller-manager. Worker nodes have kubelet, kube-proxy, and a container runtime for executing and maintaining applications.
- 3
Community Picks·2y
Next.js app deployed with Docker - does it make sense?
Learn how to dockerize a Next.js application and consider the advantages and use cases of using Docker with Next.js. Docker provides better security, dependability, faster deployment procedures, and simpler application management. While Docker may not be necessary for a single Next.js application, it becomes relevant when running multiple services.
- 4
- 5
- 6
- 7
- 8
AWS Tip·2y
Dockerizing a Static Website using Apache as a Web Server
The article explains how to dockerize a static website using Apache as a web server. It covers the steps to update the server, download and unzip the website files, create a Dockerfile, build and run a Docker image, and visit the deployed website. The deployment process using Docker and Apache offers scalability and reproducibility across different environments.
- 9
Spacelift·2y
What is Docker Init & When to Use It – Best Practices
Docker init is a utility that automates the process of enabling a project to be built and run with Docker. It creates Dockerfile templates and other resources for various programming languages. Users can quickly bootstrap new projects, add Docker to existing projects, learn how to use Docker with different programming languages, and save time and automate project management tasks. Docker init supports ASP.NET, Go, Node, Python, and Rust, with compatibility for Java and PHP planned.
- 10