Skip to main content

DockerHub images

Ogoron publishes public Docker images for Bitbucket Pipes on DockerHub.

DockerHub organization:

Pipe images

ImagePurpose
ogoron/ogoron-setup-pipeInitialize or upgrade Ogoron artifacts in a Bitbucket repository.
ogoron/ogoron-generate-pipeGenerate unit, API, and UI test artifacts.
ogoron/ogoron-run-pipeRun generated or project tests.
ogoron/ogoron-heal-pipeRun healing workflows for generated or project tests.
ogoron/ogoron-exec-pipeRun explicit Ogoron CLI commands.

Tags

Each pipe image exposes the same tag pattern:

TagDescription
5.2.1Current pinned release image.
latestMoving tag that currently points to 5.2.1.
5.2.1-lightCurrent pinned light image.
lightMoving tag that currently points to 5.2.1-light.

Prefer pinned tags in production pipelines:

- pipe: ogoron/ogoron-run-pipe:5.2.1

Use light tags when the job does not need UI/browser tooling:

- pipe: ogoron/ogoron-run-pipe:5.2.1-light

Full vs light images

Full images include:

  • Ogoron CLI
  • Python UI workspace dependencies
  • Playwright Chromium
  • Allure CLI

Light images include:

  • Ogoron CLI

Choose the full image for UI test workflows and the light image for unit/API-focused workflows.

Pulling images locally

docker pull ogoron/ogoron-setup-pipe:5.2.1
docker pull ogoron/ogoron-generate-pipe:5.2.1
docker pull ogoron/ogoron-run-pipe:5.2.1
docker pull ogoron/ogoron-heal-pipe:5.2.1
docker pull ogoron/ogoron-exec-pipe:5.2.1

For light images:

docker pull ogoron/ogoron-run-pipe:5.2.1-light