> For the complete documentation index, see [llms.txt](https://docs.flxbl.io/flxbl/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.flxbl.io/flxbl/sfp/sfp-community/getting-started/docker-images.md).

# 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/sfp-community/getting-started/docker-images/sfp-pro/migrating-to-sfp-pro.md).


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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/sfp-community/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.
