Continuous Integration using Docker
- by Leon Mergen
One of the main advantages of Docker is the isolated environment it brings, and I want to leverage that advantage in my continuous integration workflow.
A "normal" CI workflow goes something like this:
Poll repository for changes
Pull from repository
Install dependencies
Run tests
In a Dockerized workflow, it would be something like this:
…