课程: DevOps Foundations: Containers
今天就学习课程吧!
今天就开通帐号,24,100 门业界名师课程任您挑!
Containers for development
- [Instructor] In this chapter, we're going to be looking at some of the specific use cases when you might use containers. The first one I want to start with is using containers for software development. One of the simplest ways to start using containers is for your developer build environment. This varies a bit based on application, so I'll be working with the assumption of a web application with a database backend. In this kind of environment, it's helpful for developers to have a sandbox where they can work on their code, tested against a local copy of the database. If the database becomes corrupted as they're working, they'll have a way to load a fresh copy. They also usually need the supporting software component packages, all the other things that make the application work. And for smooth deployments to production, the development environment needs to very closely match what's running in prod. You might handle this…