chore(docker): migrate from Docker Hub to GitHub Container Registry#308
Merged
chore(docker): migrate from Docker Hub to GitHub Container Registry#308
Conversation
Fixed missing _internal_bindings.pyi in Python wheels that broke IDE type completions. Added .pyi file to Maturin include configuration and removed redundant MANIFEST.in since Maturin uses pyproject.toml. Also fixed Homebrew bottle checksum mismatches by updating formula script to download bottles from GitHub Release and compute checksums from actual uploaded files instead of local artifacts. Fixes #298
C# Serialization Fix:
- Changed HtmlConversionOptions to serialize as empty object {} instead of null
- Rust FFI expects html_options to be an object, not null value
- Resolves 145 test failures with "html_options must be an object" error
Ruby Cache Cleanup Fix:
- Added cleanup of packages/ruby/tmp/ directory to prevent stale Cargo fingerprints
- Applied to both build-ruby-gem and test-ruby jobs
- Prevents rb_sys compilation failures due to fingerprint mismatches
Updates CHANGELOG.md with both fixes in [Unreleased] section.
…ples
Remove non-existent EmbeddingModelType::preset() calls and use direct string preset
names instead. PHP EmbeddingConfig only supports preset names ('fast', 'balanced',
'quality', 'multilingual') as direct string values, not enum-based constructors.
Custom ONNX models are not yet supported in the PHP bindings - they return an error
at runtime. Model names are case-sensitive and must match exactly.
Fixed files:
- docs/snippets/php/utils/chunking.php
- docs/snippets/php/utils/chunking_rag.php
- docs/snippets/php/utils/embedding_with_chunking.php
- docs/snippets/php/utils/vector_database_integration.php
Fixed 4 failing Elixir tests on Windows by properly configuring Tesseract OCR installation and environment variables. Changes: - Enhanced install-windows.ps1 with Tesseract post-install configuration - Added comprehensive verification and logging showing exact Tesseract paths - Set TESSDATA_PREFIX environment variable automatically - Updated cache key to include tessdata files - Added fallback logic to search common Tesseract installation paths The script now: 1. Verifies Tesseract installation at C:\Program Files\Tesseract-OCR 2. Creates tessdata directory if missing 3. Lists all available language files (eng.traineddata, etc.) 4. Sets TESSDATA_PREFIX to persist across GitHub Actions steps 5. Provides detailed diagnostic output for debugging This fixes the "Failed to initialize language 'eng'" errors in: - test/unit/images_test.exs:478 - test/unit/tables_test.exs:806 - test/e2e/pdf_extraction_test.exs:63 - test/e2e/pdf_extraction_test.exs:121
Migrate all Docker images from Docker Hub (goldziher/kreuzberg) to GitHub Container Registry (ghcr.io/kreuzberg-dev/kreuzberg). Changes: - Updated GitHub Actions workflow to publish to ghcr.io - Changed authentication from Docker Hub to GitHub Container Registry - Added OCI labels to Dockerfiles for better metadata - Updated all documentation (40+ files) with new image locations - Added Docker badge to all READMEs (root + 9 language packages) - Fixed core/full variant tags for consistency - Updated test configurations and examples New image locations: - Core: ghcr.io/kreuzberg-dev/kreuzberg:VERSION-core or :core - Full: ghcr.io/kreuzberg-dev/kreuzberg:VERSION or :latest Local development builds use local tags (kreuzberg:core, kreuzberg:full) All images remain publicly accessible with multi-arch support (linux/amd64, linux/arm64).
Goldziher
added a commit
that referenced
this pull request
Feb 13, 2026
…try-to-ghcr chore(docker): migrate from Docker Hub to GitHub Container Registry
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Migrates all Docker images from Docker Hub (
goldziher/kreuzberg) to GitHub Container Registry (ghcr.io/kreuzberg-dev/kreuzberg).Changes
GitHub Actions & CI
.github/workflows/publish-docker.yamlto publish to ghcr.ioGITHUB_TOKEN)packages: readpermission to check-docker jobDockerfiles
docker/Dockerfile.coreanddocker/Dockerfile.fullorg.opencontainers.image.sourceorg.opencontainers.image.descriptionorg.opencontainers.image.licensesDocumentation (40+ files)
goldziher/kreuzbergtoghcr.io/kreuzberg-dev/kreuzberg-coresuffix)docs/guides/docker.md)docs/snippets/mkdocs.yamlto link to GitHub Container Registrydocker/README.mdREADMEs & Badges
README.mdscripts/readme_templates/partials/badges.html.jinjaTest Files
tests/test_apps/docker/docker-compose.ymlwith correct variant tagsChangelog
New Image Locations
Production (GitHub Container Registry):
ghcr.io/kreuzberg-dev/kreuzberg:VERSION-coreor:coreghcr.io/kreuzberg-dev/kreuzberg:VERSIONor:latestLocal Development:
kreuzberg:corekreuzberg:fullMulti-Architecture Support
Both images support:
linux/amd64(x86_64)linux/arm64(aarch64)Post-Merge Steps
After the first successful image publish:
Breaking Changes
docker pull goldziher/kreuzberg:latestdocker pull ghcr.io/kreuzberg-dev/kreuzberg:latestAll images remain publicly accessible without authentication required.
Testing
🤖 Generated with Claude Code