-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:docker/docker into kill
Docker-DCO-1.1-Signed-off-by: Dan Walsh <[email protected]> (github: rhatdan)
- Loading branch information
Showing
753 changed files
with
38,686 additions
and
18,835 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,6 +26,9 @@ | |
FROM ubuntu:14.04 | ||
MAINTAINER Tianon Gravi <[email protected]> (@tianon) | ||
|
||
RUN apt-key adv --keyserver hkp://p80.pool.sks-keyservers.net --recv-keys E871F18B51E0147C77796AC81196BA81F6B0FC61 | ||
RUN echo deb http://ppa.launchpad.net/zfs-native/stable/ubuntu trusty main > /etc/apt/sources.list.d/zfs.list | ||
|
||
# Packaged dependencies | ||
RUN apt-get update && apt-get install -y \ | ||
apparmor \ | ||
|
@@ -50,6 +53,8 @@ RUN apt-get update && apt-get install -y \ | |
ruby1.9.1 \ | ||
ruby1.9.1-dev \ | ||
s3cmd=1.1.0* \ | ||
ubuntu-zfs \ | ||
libzfs-dev \ | ||
--no-install-recommends | ||
|
||
# Get lvm2 source for compiling statically | ||
|
@@ -121,7 +126,8 @@ RUN set -x \ | |
&& git clone https://github.com/docker/distribution.git /go/src/github.com/docker/distribution \ | ||
&& (cd /go/src/github.com/docker/distribution && git checkout -q $REGISTRY_COMMIT) \ | ||
&& GOPATH=/go/src/github.com/docker/distribution/Godeps/_workspace:/go \ | ||
go build -o /go/bin/registry-v2 github.com/docker/distribution/cmd/registry | ||
go build -o /go/bin/registry-v2 github.com/docker/distribution/cmd/registry \ | ||
&& rm -rf /go/src/github.com/docker/distribution/ | ||
|
||
# Get the "docker-py" source so we can run their integration tests | ||
ENV DOCKER_PY_COMMIT 91985b239764fe54714fa0a93d52aa362357d251 | ||
|
@@ -157,23 +163,25 @@ RUN ln -sv $PWD/contrib/completion/bash/docker /etc/bash_completion.d/docker | |
COPY contrib/download-frozen-image.sh /go/src/github.com/docker/docker/contrib/ | ||
RUN ./contrib/download-frozen-image.sh /docker-frozen-images \ | ||
busybox:latest@4986bf8c15363d1c5d15512d5266f8777bfba4974ac56e3270e7760f6f0a8125 \ | ||
hello-world:frozen@e45a5af57b00862e5ef5782a9925979a02ba2b12dff832fd0991335f4a11e5c5 | ||
hello-world:frozen@e45a5af57b00862e5ef5782a9925979a02ba2b12dff832fd0991335f4a11e5c5 \ | ||
jess/unshare@5c9f6ea50341a2a8eb6677527f2bdedbf331ae894a41714fda770fb130f3314d | ||
# see also "hack/make/.ensure-frozen-images" (which needs to be updated any time this list is) | ||
|
||
# Install man page generator | ||
COPY vendor /go/src/github.com/docker/docker/vendor | ||
# (copy vendor/ because go-md2man needs golang.org/x/net) | ||
# Download man page generator | ||
RUN set -x \ | ||
&& git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \ | ||
&& git clone -b v1.2 https://github.com/russross/blackfriday.git /go/src/github.com/russross/blackfriday \ | ||
&& go install -v github.com/cpuguy83/go-md2man | ||
&& git clone -b v1.2 https://github.com/russross/blackfriday.git /go/src/github.com/russross/blackfriday | ||
|
||
# install toml validator | ||
# Download toml validator | ||
ENV TOMLV_COMMIT 9baf8a8a9f2ed20a8e54160840c492f937eeaf9a | ||
RUN set -x \ | ||
&& git clone https://github.com/BurntSushi/toml.git /go/src/github.com/BurntSushi/toml \ | ||
&& (cd /go/src/github.com/BurntSushi/toml && git checkout -q $TOMLV_COMMIT) \ | ||
&& go install -v github.com/BurntSushi/toml/cmd/tomlv | ||
&& (cd /go/src/github.com/BurntSushi/toml && git checkout -q $TOMLV_COMMIT) | ||
|
||
# copy vendor/ because go-md2man needs golang.org/x/net | ||
COPY vendor /go/src/github.com/docker/docker/vendor | ||
RUN go install -v github.com/cpuguy83/go-md2man \ | ||
github.com/BurntSushi/toml/cmd/tomlv | ||
|
||
# Wrap all commands in the "docker-in-docker" script to allow nested containers | ||
ENTRYPOINT ["hack/dind"] | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -296,7 +296,9 @@ made through a pull request. | |
[Org.Operators.security] | ||
|
||
people = [ | ||
"erw" | ||
"erw", | ||
"diogomonica", | ||
"nathanmccauley" | ||
] | ||
|
||
[Org.Operators."monthly meetings"] | ||
|
@@ -312,13 +314,29 @@ made through a pull request. | |
"jfrazelle", | ||
"crosbymichael" | ||
] | ||
|
||
[Org.Operators.community] | ||
people = [ | ||
"theadactyl" | ||
] | ||
|
||
# The chief maintainer is responsible for all aspects of quality for the project including | ||
# code reviews, usability, stability, security, performance, etc. | ||
# The most important function of the chief maintainer is to lead by example. On the first | ||
# day of a new maintainer, the best advice should be "follow the C.M.'s example and you'll | ||
# be fine". | ||
"Chief Maintainer" = "crosbymichael" | ||
|
||
# The community manager is responsible for serving the project community, including users, | ||
# contributors and partners. This involves: | ||
# - facilitating communication between maintainers, contributors and users | ||
# - organizing contributor and maintainer events | ||
# - helping new contributors get involved | ||
# - anything the project community needs to be successful | ||
# | ||
# The community manager is a point of contact for any contributor who has questions, concerns | ||
# or feedback about project operations. | ||
"Community Manager" = "theadactyl" | ||
|
||
[Org."Core maintainers"] | ||
|
||
|
@@ -345,6 +363,7 @@ made through a pull request. | |
"icecrime", | ||
"jfrazelle", | ||
"lk4d4", | ||
"runcom", | ||
"tibor", | ||
"unclejack", | ||
"vbatts", | ||
|
@@ -365,43 +384,43 @@ made through a pull request. | |
# 1. Exposing a clear road map for improving their subsystem. | ||
# 2. Deliver prompt feedback and decisions on pull requests affecting their subsystem. | ||
# 3. Be available to anyone with questions, bug reports, criticism etc. | ||
# on their component. This includes IRC, GitHub requests and the mailing | ||
# list. | ||
# on their component. This includes IRC, GitHub requests and the mailing | ||
# list. | ||
# 4. Make sure their subsystem respects the philosophy, design and | ||
# road map of the project. | ||
# road map of the project. | ||
# | ||
# #### How to review patches to your subsystem | ||
# | ||
# Accepting pull requests: | ||
# | ||
# - If the pull request appears to be ready to merge, give it a `LGTM`, which | ||
# stands for "Looks Good To Me". | ||
# - If the pull request has some small problems that need to be changed, make | ||
# a comment adressing the issues. | ||
# - If the changes needed to a PR are small, you can add a "LGTM once the | ||
# following comments are adressed..." this will reduce needless back and | ||
# forth. | ||
# - If the PR only needs a few changes before being merged, any MAINTAINER can | ||
# make a replacement PR that incorporates the existing commits and fixes the | ||
# problems before a fast track merge. | ||
# - If the pull request appears to be ready to merge, give it a `LGTM`, which | ||
# stands for "Looks Good To Me". | ||
# - If the pull request has some small problems that need to be changed, make | ||
# a comment adressing the issues. | ||
# - If the changes needed to a PR are small, you can add a "LGTM once the | ||
# following comments are adressed..." this will reduce needless back and | ||
# forth. | ||
# - If the PR only needs a few changes before being merged, any MAINTAINER can | ||
# make a replacement PR that incorporates the existing commits and fixes the | ||
# problems before a fast track merge. | ||
# | ||
# Closing pull requests: | ||
# | ||
# - If a PR appears to be abandoned, after having attempted to contact the | ||
# original contributor, then a replacement PR may be made. Once the | ||
# replacement PR is made, any contributor may close the original one. | ||
# - If you are not sure if the pull request implements a good feature or you | ||
# do not understand the purpose of the PR, ask the contributor to provide | ||
# more documentation. If the contributor is not able to adequately explain | ||
# the purpose of the PR, the PR may be closed by any MAINTAINER. | ||
# - If a MAINTAINER feels that the pull request is sufficiently architecturally | ||
# flawed, or if the pull request needs significantly more design discussion | ||
# before being considered, the MAINTAINER should close the pull request with | ||
# a short explanation of what discussion still needs to be had. It is | ||
# important not to leave such pull requests open, as this will waste both the | ||
# MAINTAINER's time and the contributor's time. It is not good to string a | ||
# contributor on for weeks or months, having them make many changes to a PR | ||
# that will eventually be rejected. | ||
# - If a PR appears to be abandoned, after having attempted to contact the | ||
# original contributor, then a replacement PR may be made. Once the | ||
# replacement PR is made, any contributor may close the original one. | ||
# - If you are not sure if the pull request implements a good feature or you | ||
# do not understand the purpose of the PR, ask the contributor to provide | ||
# more documentation. If the contributor is not able to adequately explain | ||
# the purpose of the PR, the PR may be closed by any MAINTAINER. | ||
# - If a MAINTAINER feels that the pull request is sufficiently architecturally | ||
# flawed, or if the pull request needs significantly more design discussion | ||
# before being considered, the MAINTAINER should close the pull request with | ||
# a short explanation of what discussion still needs to be had. It is | ||
# important not to leave such pull requests open, as this will waste both the | ||
# MAINTAINER's time and the contributor's time. It is not good to string a | ||
# contributor on for weeks or months, having them make many changes to a PR | ||
# that will eventually be rejected. | ||
|
||
[Org.Subsystems.Documentation] | ||
|
||
|
@@ -527,6 +546,11 @@ made through a pull request. | |
Email = "[email protected]" | ||
GitHub = "crosbymichael" | ||
|
||
[people.diogomonica] | ||
Name = "Diogo Monica" | ||
Email = "[email protected]" | ||
GitHub = "diogomonica" | ||
|
||
[people.duglin] | ||
Name = "Doug Davis" | ||
Email = "[email protected]" | ||
|
@@ -574,7 +598,7 @@ made through a pull request. | |
|
||
[people.jfrazelle] | ||
Name = "Jessie Frazelle" | ||
Email = "jess@docker.com" | ||
Email = "j@docker.com" | ||
GitHub = "jfrazelle" | ||
|
||
[people.jlhawn] | ||
|
@@ -592,6 +616,16 @@ made through a pull request. | |
Email = "[email protected]" | ||
GitHub = "moxiegirl" | ||
|
||
[people.nathanmccauley] | ||
Name = "Nathan McCauley" | ||
Email = "[email protected]" | ||
GitHub = "nathanmccauley" | ||
|
||
[people.runcom] | ||
Name = "Antonio Murdaca" | ||
Email = "[email protected]" | ||
GitHub = "runcom" | ||
|
||
[people.sday] | ||
Name = "Stephen Day" | ||
Email = "[email protected]" | ||
|
@@ -616,6 +650,11 @@ made through a pull request. | |
Name = "Sebastiaan van Stijn" | ||
Email = "[email protected]" | ||
GitHub = "thaJeztah" | ||
|
||
[people.theadactyl] | ||
Name = "Thea Lamkin" | ||
Email = "[email protected]" | ||
GitHub = "theadactyl" | ||
|
||
[people.tianon] | ||
Name = "Tianon Gravi" | ||
|
This file contains 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
Oops, something went wrong.