-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New docker release (6.0 and testing) #6654
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
Conversation
readthedocs/settings/base.py
Outdated
}, | ||
'readthedocs/build:6.0rc1': { | ||
'python': {'supported_versions': [2, 2.7, 3, 3.5, 3.6, 3.7, 3.8, 'pypy3.5']}, | ||
'readthedocs/build:testing': { |
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.
I think this should be labeled as 7.0, and testing
used as an alias, like latest and stable. I don't think we want a specific testing
image, otherwise it's done differently than all our other images.
}, | ||
} | ||
|
||
# Alias tagged via ``docker tag`` on the build servers | ||
DOCKER_IMAGE_SETTINGS.update({ | ||
'readthedocs/build:stable': DOCKER_IMAGE_SETTINGS.get('readthedocs/build:4.0'), | ||
'readthedocs/build:latest': DOCKER_IMAGE_SETTINGS.get('readthedocs/build:5.0'), | ||
'readthedocs/build:stable': DOCKER_IMAGE_SETTINGS.get('readthedocs/build:5.0'), |
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.
Wouldn't this change everybody who was pointed at stable
in their config file to use readthedocs/build:5.0
when previously they were using readthedocs/build:4.0
? I'm not super familiar with the backwards compatibility of our docker images but is that what we want?
Mark - 5.0 as stable - 6.0 as latest
224e5b0
to
1c0a502
Compare
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.
Looks good 👍
6.0
andtesting
images in our YAML file.Edit: this PR includes changes from #6653 so be careful when merging.