Skip to content

CircleCI

kimschles edited this page Jul 26, 2018 · 1 revision

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
Clone this wiki locally