Skip to content

Local development containerization

Local development containerization is a workflow process that integrates application development with containerized deployment environments.^[本地開發 Kubernetes 應用程式流程.md]

Workflow

The procedure typically follows a four-step cycle:

  1. Modify Source Code: The developer makes changes to the application's source code.^[本地開發 Kubernetes 應用程式流程.md]
  2. Build Image: A Dockerfile is used to generate a new Docker Container Image based on the updated code.^[本地開發 Kubernetes 應用程式流程.md]
  3. Deploy: The new version of the application is deployed to a Kubernetes cluster.^[本地開發 Kubernetes 應用程式流程.md]
  4. Provision Resources: Kubernetes detects the new Docker Container Image and automatically creates or updates the necessary compute resources to run the application.^[本地開發 Kubernetes 應用程式流程.md]

Sources

  • 本地開發 Kubernetes 應用程式流程.md