2014-01-03 19:52:18 -05:00
|
|
|
# Release Checklist
|
2013-08-16 19:05:16 -04:00
|
|
|
## A maintainer's guide to releasing Docker
|
|
|
|
|
|
|
|
So you're in charge of a Docker release? Cool. Here's what to do.
|
|
|
|
|
|
|
|
If your experience deviates from this document, please document the changes
|
|
|
|
to keep it up-to-date.
|
|
|
|
|
|
|
|
### 1. Pull from master and create a release branch
|
|
|
|
|
|
|
|
```bash
|
2014-01-03 19:52:18 -05:00
|
|
|
export VERSION=vX.Y.Z
|
2013-10-29 18:28:12 -04:00
|
|
|
git checkout release
|
2014-01-03 19:52:18 -05:00
|
|
|
git fetch
|
|
|
|
git reset --hard origin/release
|
2013-08-16 19:05:16 -04:00
|
|
|
git checkout -b bump_$VERSION
|
2013-11-22 13:39:40 -05:00
|
|
|
git merge origin/master
|
2013-08-16 19:05:16 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### 2. Update CHANGELOG.md
|
|
|
|
|
|
|
|
You can run this command for reference:
|
|
|
|
|
|
|
|
```bash
|
2014-01-03 19:52:18 -05:00
|
|
|
LAST_VERSION=$(git tag | grep -E 'v[0-9\.]+$' | sort -nr | head -n 1)
|
|
|
|
git log --stat $LAST_VERSION..HEAD
|
2013-08-16 19:05:16 -04:00
|
|
|
```
|
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
Each change should be listed under a category heading formatted as `#### CATEGORY`.
|
2013-08-16 19:05:16 -04:00
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
`CATEGORY` should describe which part of the project is affected.
|
2013-08-16 19:05:16 -04:00
|
|
|
Valid categories are:
|
|
|
|
* Builder
|
|
|
|
* Documentation
|
|
|
|
* Hack
|
|
|
|
* Packaging
|
|
|
|
* Remote API
|
|
|
|
* Runtime
|
2014-01-03 19:52:18 -05:00
|
|
|
* Other (please use this category sparingly)
|
|
|
|
|
|
|
|
Each change should be formatted as `BULLET DESCRIPTION`, given:
|
2013-08-16 19:05:16 -04:00
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
* BULLET: either `-`, `+` or `*`, to indicate a bugfix, new feature or
|
|
|
|
upgrade, respectively.
|
|
|
|
|
|
|
|
* DESCRIPTION: a concise description of the change that is relevant to the
|
|
|
|
end-user, using the present tense. Changes should be described in terms
|
|
|
|
of how they affect the user, for example "Add new feature X which allows Y",
|
|
|
|
"Fix bug which caused X", "Increase performance of Y".
|
2013-08-16 19:05:16 -04:00
|
|
|
|
|
|
|
EXAMPLES:
|
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
```markdown
|
|
|
|
## 0.3.6 (1995-12-25)
|
|
|
|
|
|
|
|
#### Builder
|
|
|
|
|
|
|
|
+ 'docker build -t FOO .' applies the tag FOO to the newly built container
|
|
|
|
|
|
|
|
#### Remote API
|
|
|
|
|
|
|
|
- Fix a bug in the optional unix socket transport
|
|
|
|
|
|
|
|
#### Runtime
|
|
|
|
|
|
|
|
* Improve detection of kernel version
|
2013-08-16 19:05:16 -04:00
|
|
|
```
|
|
|
|
|
|
|
|
### 3. Change the contents of the VERSION file
|
|
|
|
|
2013-11-22 13:39:40 -05:00
|
|
|
```bash
|
|
|
|
echo ${VERSION#v} > VERSION
|
|
|
|
```
|
|
|
|
|
2013-08-16 19:05:16 -04:00
|
|
|
### 4. Run all tests
|
|
|
|
|
2013-10-29 18:28:12 -04:00
|
|
|
```bash
|
2014-01-03 19:52:18 -05:00
|
|
|
make test
|
2013-10-29 18:28:12 -04:00
|
|
|
```
|
2013-08-16 19:05:16 -04:00
|
|
|
|
2013-10-15 18:52:21 -04:00
|
|
|
### 5. Test the docs
|
|
|
|
|
|
|
|
Make sure that your tree includes documentation for any modified or
|
|
|
|
new features, syntax or semantic changes. Instructions for building
|
2014-01-03 19:52:18 -05:00
|
|
|
the docs are in `docs/README.md`.
|
2013-10-15 18:52:21 -04:00
|
|
|
|
|
|
|
### 6. Commit and create a pull request to the "release" branch
|
2013-08-16 19:05:16 -04:00
|
|
|
|
|
|
|
```bash
|
2013-10-29 18:28:12 -04:00
|
|
|
git add VERSION CHANGELOG.md
|
2013-08-16 19:05:16 -04:00
|
|
|
git commit -m "Bump version to $VERSION"
|
|
|
|
git push origin bump_$VERSION
|
2014-01-03 19:52:18 -05:00
|
|
|
echo "https://github.com/dotcloud/docker/compare/release...bump_$VERSION"
|
2013-08-16 19:05:16 -04:00
|
|
|
```
|
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
That last command will give you the proper link to visit to ensure that you
|
|
|
|
open the PR against the "release" branch instead of accidentally against
|
|
|
|
"master" (like so many brave souls before you already have).
|
|
|
|
|
2013-10-15 18:52:21 -04:00
|
|
|
### 7. Get 2 other maintainers to validate the pull request
|
2013-08-16 19:05:16 -04:00
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
### 8. Publish binaries
|
|
|
|
|
|
|
|
To run this you will need access to the release credentials.
|
|
|
|
Get them from [the infrastructure maintainers](
|
|
|
|
https://github.com/dotcloud/docker/blob/master/hack/infrastructure/MAINTAINERS).
|
|
|
|
|
|
|
|
```bash
|
|
|
|
docker build -t docker .
|
|
|
|
export AWS_S3_BUCKET="test.docker.io"
|
|
|
|
export AWS_ACCESS_KEY="$(cat ~/.aws/access_key)"
|
|
|
|
export AWS_SECRET_KEY="$(cat ~/.aws/secret_key)"
|
|
|
|
export GPG_PASSPHRASE=supersecretsesame
|
|
|
|
docker run \
|
|
|
|
-e AWS_S3_BUCKET=test.docker.io \
|
|
|
|
-e AWS_ACCESS_KEY \
|
|
|
|
-e AWS_SECRET_KEY \
|
|
|
|
-e GPG_PASSPHRASE \
|
|
|
|
-i -t -privileged \
|
|
|
|
docker \
|
|
|
|
hack/release.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
It will run the test suite one more time, build the binaries and packages,
|
|
|
|
and upload to the specified bucket (you should use test.docker.io for
|
|
|
|
general testing, and once everything is fine, switch to get.docker.io as
|
|
|
|
noted below).
|
|
|
|
|
|
|
|
After the binaries and packages are uploaded to test.docker.io, make sure
|
|
|
|
they get tested in both Ubuntu and Debian for any obvious installation
|
|
|
|
issues or runtime issues.
|
|
|
|
|
|
|
|
Announcing on IRC in both `#docker` and `#docker-dev` is a great way to get
|
|
|
|
help testing! An easy way to get some useful links for sharing:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
echo "Ubuntu/Debian install script: curl -sLS https://test.docker.io/ | sh"
|
|
|
|
echo "Linux 64bit binary: https://test.docker.io/builds/Linux/x86_64/docker-${VERSION#v}"
|
|
|
|
echo "Darwin/OSX 64bit client binary: https://test.docker.io/builds/Darwin/x86_64/docker-${VERSION#v}"
|
|
|
|
echo "Darwin/OSX 32bit client binary: https://test.docker.io/builds/Darwin/i386/docker-${VERSION#v}"
|
|
|
|
echo "Linux 64bit tgz: https://test.docker.io/builds/Linux/x86_64/docker-${VERSION#v}.tgz"
|
|
|
|
```
|
|
|
|
|
|
|
|
Once they're tested and reasonably believed to be working, run against
|
|
|
|
get.docker.io:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
docker run \
|
|
|
|
-e AWS_S3_BUCKET=get.docker.io \
|
|
|
|
-e AWS_ACCESS_KEY \
|
|
|
|
-e AWS_SECRET_KEY \
|
|
|
|
-e GPG_PASSPHRASE \
|
|
|
|
-i -t -privileged \
|
|
|
|
docker \
|
|
|
|
hack/release.sh
|
|
|
|
```
|
|
|
|
|
|
|
|
### 9. Apply tag
|
2013-08-16 19:05:16 -04:00
|
|
|
|
|
|
|
```bash
|
2013-11-22 13:39:40 -05:00
|
|
|
git tag -a $VERSION -m $VERSION bump_$VERSION
|
|
|
|
git push origin $VERSION
|
2013-08-16 19:05:16 -04:00
|
|
|
```
|
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
It's very important that we don't make the tag until after the official
|
|
|
|
release is uploaded to get.docker.io!
|
|
|
|
|
|
|
|
### 10. Go to github to merge the `bump_$VERSION` into release
|
|
|
|
|
2013-10-15 18:52:21 -04:00
|
|
|
Merging the pull request to the release branch will automatically
|
|
|
|
update the documentation on the "latest" revision of the docs. You
|
|
|
|
should see the updated docs 5-10 minutes after the merge. The docs
|
|
|
|
will appear on http://docs.docker.io/. For more information about
|
2014-01-03 19:52:18 -05:00
|
|
|
documentation releases, see `docs/README.md`.
|
2013-10-29 18:28:12 -04:00
|
|
|
|
2013-11-22 13:39:40 -05:00
|
|
|
Don't forget to push that pretty blue button to delete the leftover
|
|
|
|
branch afterwards!
|
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
### 11. Create a new pull request to merge release back into master
|
2013-08-16 19:05:16 -04:00
|
|
|
|
|
|
|
```bash
|
2014-01-03 19:52:18 -05:00
|
|
|
git checkout master
|
2013-10-29 18:28:12 -04:00
|
|
|
git fetch
|
2014-01-03 19:52:18 -05:00
|
|
|
git reset --hard origin/master
|
|
|
|
git merge origin/release
|
|
|
|
git checkout -b merge_release_$VERSION
|
|
|
|
echo ${VERSION#v}-dev > VERSION
|
|
|
|
git add VERSION
|
|
|
|
git commit -m "Change version to $(cat VERSION)"
|
|
|
|
git push origin merge_release_$VERSION
|
|
|
|
echo "https://github.com/dotcloud/docker/compare/master...merge_release_$VERSION"
|
2013-08-16 19:05:16 -04:00
|
|
|
```
|
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
Again, get two maintainers to validate, then merge, then push that pretty
|
|
|
|
blue button to delete your branch.
|
2013-08-16 19:05:16 -04:00
|
|
|
|
2014-01-03 19:52:18 -05:00
|
|
|
### 12. Rejoice and Evangelize!
|
2013-08-16 19:05:16 -04:00
|
|
|
|
|
|
|
Congratulations! You're done.
|
2013-11-22 13:39:40 -05:00
|
|
|
|
|
|
|
Go forth and announce the glad tidings of the new release in `#docker`,
|
|
|
|
`#docker-dev`, on the [mailing list](https://groups.google.com/forum/#!forum/docker-dev),
|
|
|
|
and on Twitter!
|