+For example, if you build images with mutable tags like `latest`, then a shared Docker environment could have undesireable results. When `exclusive:` is set to `false`, CircleCI only allows two parallel jobs to use the same Docker environment. This can be any 2 jobs running in parallel in the same project. For example, `build 2` on job 1 and `deploy 1` on job 2 could share the same environment. As such, you should not assume sequential sharing, where the `build 1` environment is the same one that `test 1` uses in a job. Instead, each job should be configured to push or pull to a Docker registry as needed. The Docker environments will eventually stabilize with the images your jobs require after a few job runs.
0 commit comments