DockerHub images
Ogoron publishes public Docker images for Bitbucket Pipes on DockerHub.
DockerHub organization:
Pipe images
| Image | Purpose |
|---|---|
ogoron/ogoron-setup-pipe | Initialize or upgrade Ogoron artifacts in a Bitbucket repository. |
ogoron/ogoron-generate-pipe | Generate unit, API, and UI test artifacts. |
ogoron/ogoron-run-pipe | Run generated or project tests. |
ogoron/ogoron-heal-pipe | Run healing workflows for generated or project tests. |
ogoron/ogoron-exec-pipe | Run explicit Ogoron CLI commands. |
Tags
Each pipe image exposes the same tag pattern:
| Tag | Description |
|---|---|
5.2.1 | Current pinned release image. |
latest | Moving tag that currently points to 5.2.1. |
5.2.1-light | Current pinned light image. |
light | Moving 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