CircleCI - kimschles/schlesinger-knowledge GitHub Wiki
Workflows
- A workflow is a set of instructions that define the order in which jobs are run (things like build, test and deploy)
- Jobs are a collection of steps and an environment to run them in
- A step is a command that can be executed
Running a Docker Container
()[https://circleci.com/docs/2.0/building-docker-images/]
- In the jobs:build:steps flow, add the
- setup_remote_docker
key- This key will prompt circleci to create a remote environment that the primary container (the first image listed in the
config.yml
) will use. All docker commands will be executed in the new environment
- This key will prompt circleci to create a remote environment that the primary container (the first image listed in the