Docker Images
Image
Description
Pulling Images
# 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:versionUsing in CI/CD
# 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 }}Last updated