# Docker Images

sfp Docker images are published from the flxbl Gitea registry at source.flxbl.io.

Two image variants are available:

| Image            | Description                    |
| ---------------- | ------------------------------ |
| **sfp-pro-lite** | sfp CLI without SF CLI bundled |
| **sfp-pro**      | sfp CLI with SF CLI bundled    |

### Pulling Images

```bash
# Login to the Gitea registry
docker login source.flxbl.io -u your-username

# Pull the sfp image with SF CLI
docker pull source.flxbl.io/flxbl/sfp-pro:version

# Pull the lite image (without SF CLI)
docker pull source.flxbl.io/flxbl/sfp-pro-lite:version
```

Version numbers can be found at <https://source.flxbl.io/flxbl/-/packages/container/sfp-pro/>

### Using in CI/CD

```yaml
# GitHub Actions
jobs:
  build:
    runs-on: ubuntu-latest
    container:
      image: source.flxbl.io/flxbl/sfp-pro:latest
      credentials:
        username: ${{ secrets.GITEA_USER }}
        password: ${{ secrets.GITEA_PAT }}
```

For setting up automated image synchronization to your own registry, see [Automated Image Synchronization](/flxbl/sfp/getting-started/docker-images/sfp-pro/migrating-to-sfp-pro.md).


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.flxbl.io/flxbl/sfp/getting-started/docker-images.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
