-
Notifications
You must be signed in to change notification settings - Fork 4
Build SOLR Docker image #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: 4.6
Are you sure you want to change the base?
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR introduces Docker containerization for a SOLR search engine, creating a custom Docker image based on SOLR 8.11.2 with Ibexa-specific configurations and setting up automated builds via GitHub Actions.
- Creates a Dockerfile that customizes the base SOLR image with Ibexa template configurations
- Adds GitHub Actions workflow for building and pushing Docker images to GitHub Container Registry
- Configures SOLR with custom template directory and core creation
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
File | Description |
---|---|
Dockerfile | Defines custom SOLR image with Ibexa configurations and template setup |
.github/workflows/docker.yaml | GitHub Actions workflow for automated Docker image building and publishing |
Comments suppressed due to low confidence (2)
.github/workflows/docker.yaml:55
- The docker/build-push-action@v5 version should be updated to v6, which is the latest stable version available.
uses: docker/build-push-action@v5
# tags: | ||
# - 'v*' | ||
# - '!v*-alpha*' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The commented-out tag trigger configuration should either be removed or uncommented with proper documentation explaining when it should be enabled.
# tags: | |
# - 'v*' | |
# - '!v*-alpha*' | |
tags: | |
- 'v*' # Trigger workflow for version tags (e.g., v1.0.0) | |
- '!v*-alpha*' # Exclude alpha pre-release tags (e.g., v1.0.0-alpha) |
Copilot uses AI. Check for mistakes.
No description provided.