Bitbucket Pipeline Runner Settings

Bitbucket Pipelines support uses the local pipeline-runner CLI to run pipelines, stages, and steps locally in Docker.

Table of Contents

  1. workspaceTasks.applicationPath.bitbucketPipelineRunner
  2. workspaceTasks.bitbucketPipelineRunner.environmentFiles

workspaceTasks.applicationPath.bitbucketPipelineRunner

Type: string Default: "pipeline-runner" Scope: resource

Path to the pipeline-runner executable. Install via:

pipx install bitbucket-pipeline-runner
{
  "workspaceTasks.applicationPath.bitbucketPipelineRunner": "pipeline-runner"
}

workspaceTasks.bitbucketPipelineRunner.environmentFiles

Type: string[] Default: [] Scope: resource

List of environment files passed to pipeline-runner via --env-file. Each entry becomes a separate --env-file argument.

{
  "workspaceTasks.bitbucketPipelineRunner.environmentFiles": [
    ".env",
    ".env.local"
  ]
}

© 2026 Ryan Conrad. All rights reserved.

This site uses Just the Docs, a documentation theme for Jekyll.