Open
Conversation
…ts and CMD format consistency
…improved service linking
…kerfile for improved dependency management
…se.yml for improved service linking
…ependency management across services
…ng in docker-compose.yml
…for improved service linking
…eguide-dev.yml for improved service linking
…mproved performance and compatibility
…for improved features and compatibility
…ance and compatibility
…es and new requirements
Review or Edit in CodeSandboxOpen the branch in Web Editor • VS Code • Insiders |
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.
Pull Request: V8.0.0 Release
Branch: V8.0.0updates → master
Breaking Changes
Python Package Management → UV
Migrated all Python backend containers from pip to UV package manager
Implemented shared UV cache across all containers at /opt/uv-cache/uv
All backend services now use uv sync and uv run commands
Migration: Custom Python containers must update to UV syntax in Dockerfiles
Base Image Update → Ubuntu 24.04 LTS
Updated epicsbase container from previous Ubuntu to 24.04 LTS
Python 3.12.7 now installed via UV
EPICS Base 7.0.9
Migration: Verify custom package compatibility with Ubuntu 24.04
Container Architecture Restructure
Introduced epicsbase as foundational layer for all backend containers
All backend services now use additional_contexts to reference epicsbase
Docker Version Requirement
Minimum: Docker 28.1.1+ (required for additional_contexts support)
Docker Compose Bake support enabled for 2-3x faster builds
Migration: Update Docker to 28.1.1 or later
Modified Files
Docker Orchestration:
docker-compose.yml - Added additional_contexts and depends_on for all backend services
docker-compose-dev.yml - Added additional_contexts and depends_on for all backend services
docker-compose-dev-styleguide-dev.yml - Added additional_contexts and depends_on for all backend services
Python Package Management:
All pyproject.toml files updated for UV compatibility
Migration Impact
Standard Users: Update Docker to 28.1.1+, no code changes needed
Custom Deployment Users:
Update Docker to 28.1.1+
Add additional_contexts and depends_on to custom docker-compose backend services
Update custom Python Dockerfiles to use UV syntax
Test custom packages with Ubuntu 24.04
Benefits:
2-3x faster builds with Docker Compose Bake
Consistent Python dependencies across containers
Reduced image sizes through shared layers
Improved build caching