mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
I'm going to wish I didn't do this
Docker-DCO-1.1-Signed-off-by: SvenDowideit <SvenDowideit@home.org.au> (github: SvenDowideit)
This commit is contained in:
parent
2c32c195d9
commit
fa29b1f062
58 changed files with 126 additions and 71 deletions
|
@ -17,7 +17,7 @@ This information will help us review and fix your issue faster.
|
||||||
|
|
||||||
For instructions on setting up your development environment, please
|
For instructions on setting up your development environment, please
|
||||||
see our dedicated [dev environment setup
|
see our dedicated [dev environment setup
|
||||||
docs](http://docs.docker.io/en/latest/contributing/devenvironment/).
|
docs](http://docs.docker.com/contributing/devenvironment/).
|
||||||
|
|
||||||
## Contribution guidelines
|
## Contribution guidelines
|
||||||
|
|
||||||
|
@ -190,7 +190,7 @@ There are several exceptions to the signing requirement. Currently these are:
|
||||||
* Your patch fixes Markdown formatting or syntax errors in the
|
* Your patch fixes Markdown formatting or syntax errors in the
|
||||||
documentation contained in the `docs` directory.
|
documentation contained in the `docs` directory.
|
||||||
|
|
||||||
If you have any questions, please refer to the FAQ in the [docs](http://docs.docker.io)
|
If you have any questions, please refer to the FAQ in the [docs](http://docs.docker.com)
|
||||||
|
|
||||||
### How can I become a maintainer?
|
### How can I become a maintainer?
|
||||||
|
|
||||||
|
|
|
@ -160,7 +160,7 @@ Docker can be used to run short-lived commands, long-running daemons
|
||||||
(app servers, databases etc.), interactive shell sessions, etc.
|
(app servers, databases etc.), interactive shell sessions, etc.
|
||||||
|
|
||||||
You can find a [list of real-world
|
You can find a [list of real-world
|
||||||
examples](http://docs.docker.io/en/latest/examples/) in the
|
examples](http://docs.docker.com/examples/) in the
|
||||||
documentation.
|
documentation.
|
||||||
|
|
||||||
Under the hood
|
Under the hood
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#compdef docker
|
#compdef docker
|
||||||
#
|
#
|
||||||
# zsh completion for docker (http://docker.io)
|
# zsh completion for docker (http://docker.com)
|
||||||
#
|
#
|
||||||
# version: 0.2.2
|
# version: 0.2.2
|
||||||
# author: Felix Riedel
|
# author: Felix Riedel
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Docker Application Container Engine
|
Description=Docker Application Container Engine
|
||||||
Documentation=http://docs.docker.io
|
Documentation=http://docs.docker.com
|
||||||
After=network.target
|
After=network.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[Unit]
|
[Unit]
|
||||||
Description=Docker Application Container Engine
|
Description=Docker Application Container Engine
|
||||||
Documentation=http://docs.docker.io
|
Documentation=http://docs.docker.com
|
||||||
After=network.target
|
After=network.target
|
||||||
|
|
||||||
[Service]
|
[Service]
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
#
|
#
|
||||||
# /etc/rc.d/init.d/docker
|
# /etc/rc.d/init.d/docker
|
||||||
#
|
#
|
||||||
# Daemon for docker.io
|
# Daemon for docker.com
|
||||||
#
|
#
|
||||||
# chkconfig: 2345 95 95
|
# chkconfig: 2345 95 95
|
||||||
# description: Daemon for docker.io
|
# description: Daemon for docker.com
|
||||||
|
|
||||||
### BEGIN INIT INFO
|
### BEGIN INIT INFO
|
||||||
# Provides: docker
|
# Provides: docker
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
# Default-Start: 2 3 4 5
|
# Default-Start: 2 3 4 5
|
||||||
# Default-Stop: 0 1 6
|
# Default-Stop: 0 1 6
|
||||||
# Short-Description: start and stop docker
|
# Short-Description: start and stop docker
|
||||||
# Description: Daemon for docker.io
|
# Description: Daemon for docker.com
|
||||||
### END INIT INFO
|
### END INIT INFO
|
||||||
|
|
||||||
# Source function library.
|
# Source function library.
|
||||||
|
|
|
@ -836,7 +836,7 @@ func NewDaemonFromDirectory(config *daemonconfig.Config, eng *engine.Engine) (*D
|
||||||
localCopy := path.Join(config.Root, "init", fmt.Sprintf("dockerinit-%s", dockerversion.VERSION))
|
localCopy := path.Join(config.Root, "init", fmt.Sprintf("dockerinit-%s", dockerversion.VERSION))
|
||||||
sysInitPath := utils.DockerInitPath(localCopy)
|
sysInitPath := utils.DockerInitPath(localCopy)
|
||||||
if sysInitPath == "" {
|
if sysInitPath == "" {
|
||||||
return nil, fmt.Errorf("Could not locate dockerinit: This usually means docker was built incorrectly. See http://docs.docker.io/en/latest/contributing/devenvironment for official build instructions.")
|
return nil, fmt.Errorf("Could not locate dockerinit: This usually means docker was built incorrectly. See http://docs.docker.com/contributing/devenvironment for official build instructions.")
|
||||||
}
|
}
|
||||||
|
|
||||||
if sysInitPath != localCopy {
|
if sysInitPath != localCopy {
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
The source for Docker documentation is here under `sources/` and uses extended
|
The source for Docker documentation is here under `sources/` and uses extended
|
||||||
Markdown, as implemented by [MkDocs](http://mkdocs.org).
|
Markdown, as implemented by [MkDocs](http://mkdocs.org).
|
||||||
|
|
||||||
The HTML files are built and hosted on `https://docs.docker.io`, and update
|
The HTML files are built and hosted on `https://docs.docker.com`, and update
|
||||||
automatically after each change to the master or release branch of [Docker on
|
automatically after each change to the master or release branch of [Docker on
|
||||||
GitHub](https://github.com/dotcloud/docker) thanks to post-commit hooks. The
|
GitHub](https://github.com/dotcloud/docker) thanks to post-commit hooks. The
|
||||||
`docs` branch maps to the "latest" documentation and the `master` (unreleased
|
`docs` branch maps to the "latest" documentation and the `master` (unreleased
|
||||||
|
@ -21,14 +21,14 @@ In the rare case where your change is not forward-compatible, you may need to
|
||||||
base your changes on the `docs` branch.
|
base your changes on the `docs` branch.
|
||||||
|
|
||||||
Also, now that we have a `docs` branch, we can keep the
|
Also, now that we have a `docs` branch, we can keep the
|
||||||
[http://docs.docker.io](http://docs.docker.io) docs up to date with any bugs
|
[http://docs.docker.com](http://docs.docker.com) docs up to date with any bugs
|
||||||
found between Docker code releases.
|
found between Docker code releases.
|
||||||
|
|
||||||
**Warning**: When *reading* the docs, the
|
**Warning**: When *reading* the docs, the
|
||||||
[http://beta-docs.docker.io](http://beta-docs.docker.io) documentation may
|
[http://docs-stage.docker.com](http://docs-stage.docker.com) documentation may
|
||||||
include features not yet part of any official Docker release. The `beta-docs`
|
include features not yet part of any official Docker release. The `beta-docs`
|
||||||
site should be used only for understanding bleeding-edge development and
|
site should be used only for understanding bleeding-edge development and
|
||||||
`docs.docker.io` (which points to the `docs` branch`) should be used for the
|
`docs.docker.com` (which points to the `docs` branch`) should be used for the
|
||||||
latest official release.
|
latest official release.
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
|
@ -203,4 +203,4 @@ or
|
||||||
run later, during the next build stage.
|
run later, during the next build stage.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
*May 2014, Compiled by Zac Dover (zdover at redhat dot com) based on docker.io Dockerfile documentation.
|
*May 2014, Compiled by Zac Dover (zdover at redhat dot com) based on docker.com Dockerfile documentation.
|
||||||
|
|
|
@ -68,4 +68,4 @@ The Pandoc Docker container will process the Markdown files and generate
|
||||||
the man pages inside the `docker/docs/man/man1` directory using
|
the man pages inside the `docker/docs/man/man1` directory using
|
||||||
Docker volumes. For more information on Docker volumes see the man page for
|
Docker volumes. For more information on Docker volumes see the man page for
|
||||||
`docker run` and also look at the article [Sharing Directories via Volumes]
|
`docker run` and also look at the article [Sharing Directories via Volumes]
|
||||||
(http://docs.docker.io/use/working_with_volumes/).
|
(http://docs.docker.com/use/working_with_volumes/).
|
||||||
|
|
|
@ -57,5 +57,5 @@ attach** command:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -117,5 +117,5 @@ Note: You can set an arbitrary Git repository via the `git://` schema.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
March 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
March 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -35,5 +35,5 @@ create a new image run docker ps to find the container's ID and then run:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and in
|
based on docker.com source material and in
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -24,5 +24,5 @@ the exited container to the current dir on the host:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -43,5 +43,5 @@ Inspect the changes to on a nginx container:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -49,5 +49,5 @@ Again the output container IDs have been shortened for the purposes of this docu
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -26,5 +26,5 @@ called test.tar:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -30,5 +30,5 @@ Show the history of when and how an image was created.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -86,5 +86,5 @@ tools.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -39,5 +39,5 @@ Import to docker via pipe and stdin:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -44,5 +44,5 @@ Here is a sample output:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -225,5 +225,5 @@ Use an image's ID or name (e.g., repository/name[:tag]) to get information
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -20,5 +20,5 @@ The main process inside each container specified will be sent SIGKILL,
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -34,5 +34,5 @@ Restores both images and tags.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -34,5 +34,5 @@ login to a private registry you can specify this by adding the server name.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -29,5 +29,5 @@ then continue streaming new output from the container’s stdout and stderr.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -13,5 +13,4 @@ There are no available options.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -66,5 +66,5 @@ the running containers.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
based on docker.io source material and internal work.
|
based on docker.com source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
|
|
@ -51,5 +51,10 @@ There are no available options.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -10,7 +10,7 @@ NAME[:TAG]
|
||||||
|
|
||||||
# DESCRIPTION
|
# DESCRIPTION
|
||||||
Push an image or a repository to a registry. The default registry is the Docker
|
Push an image or a repository to a registry. The default registry is the Docker
|
||||||
Index located at [index.docker.io](https://index.docker.io/v1/). However the
|
Hub located at [hub.docker.com](https://hub.docker.com/). However the
|
||||||
image can be pushed to another, perhaps private, registry as demonstrated in
|
image can be pushed to another, perhaps private, registry as demonstrated in
|
||||||
the example below.
|
the example below.
|
||||||
|
|
||||||
|
@ -28,7 +28,7 @@ and then committing it to a new image name:
|
||||||
|
|
||||||
Now push the image to the registry using the image ID. In this example
|
Now push the image to the registry using the image ID. In this example
|
||||||
the registry is on host named registry-host and listening on port 5000.
|
the registry is on host named registry-host and listening on port 5000.
|
||||||
Default Docker commands will push to the default `index.docker.io`
|
Default Docker commands will push to the default `hub.docker.com`
|
||||||
registry. Instead, push to the local registry, which is on a host called
|
registry. Instead, push to the local registry, which is on a host called
|
||||||
registry-host*. To do this, tag the image with the host name or IP
|
registry-host*. To do this, tag the image with the host name or IP
|
||||||
address, and the port of the registry:
|
address, and the port of the registry:
|
||||||
|
@ -45,5 +45,9 @@ listed.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -18,5 +18,10 @@ Restart each container listed.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -47,5 +47,9 @@ command. The use that name as follows:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -34,5 +34,9 @@ Here is an example of removing and image:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -369,5 +369,9 @@ changes will also be reflected on the host in /var/db.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -33,5 +33,10 @@ fedora image to a fedora-latest.tar:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -54,5 +54,9 @@ ranked 1 or higher:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -23,5 +23,9 @@ Start a stopped container.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -19,5 +19,9 @@ Stop a running container (Send SIGTERM, and then SIGKILL after
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -54,5 +54,9 @@ registry you must tag it with the registry hostname and port (if needed).
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -27,5 +27,10 @@ Run **docker top** with the ps option of -x:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -24,5 +24,10 @@ There are no available options.
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com)
|
||||||
|
<<<<<<< HEAD
|
||||||
based on docker.io source material and internal work.
|
based on docker.io source material and internal work.
|
||||||
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au>
|
||||||
|
=======
|
||||||
|
based on docker.com source material and internal work.
|
||||||
|
|
||||||
|
>>>>>>> 834ef8a... I'm going to wish I didn't do this
|
||||||
|
|
|
@ -190,4 +190,4 @@ For example:
|
||||||
|
|
||||||
# HISTORY
|
# HISTORY
|
||||||
April 2014, Originally compiled by William Henry (whenry at redhat dot com) based
|
April 2014, Originally compiled by William Henry (whenry at redhat dot com) based
|
||||||
on docker.io source material and internal work.
|
on docker.com source material and internal work.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
site_name: Docker Documentation
|
site_name: Docker Documentation
|
||||||
#site_url: http://docs.docker.io/
|
#site_url: http://docs.docker.com/
|
||||||
site_url: /
|
site_url: /
|
||||||
site_description: Documentation for fast and lightweight Docker container based virtualization framework.
|
site_description: Documentation for fast and lightweight Docker container based virtualization framework.
|
||||||
site_favicon: img/favicon.png
|
site_favicon: img/favicon.png
|
||||||
|
|
|
@ -9,7 +9,7 @@ To publish the Docker documentation you need to set your access_key and secret_k
|
||||||
(with the keys in a [profile $AWS_S3_BUCKET] section - so you can have more than one set of keys in your file)
|
(with the keys in a [profile $AWS_S3_BUCKET] section - so you can have more than one set of keys in your file)
|
||||||
and set the AWS_S3_BUCKET env var to the name of your bucket.
|
and set the AWS_S3_BUCKET env var to the name of your bucket.
|
||||||
|
|
||||||
make AWS_S3_BUCKET=beta-docs.docker.io docs-release
|
make AWS_S3_BUCKET=docs-stage.docker.com docs-release
|
||||||
|
|
||||||
will then push the documentation site to your s3 bucket.
|
will then push the documentation site to your s3 bucket.
|
||||||
EOF
|
EOF
|
||||||
|
|
|
@ -5,7 +5,7 @@ page_keywords: Docker, Docker documentation, security
|
||||||
# Docker Security
|
# Docker Security
|
||||||
|
|
||||||
> *Adapted from* [Containers & Docker: How Secure are
|
> *Adapted from* [Containers & Docker: How Secure are
|
||||||
> They?](http://blog.docker.io/2013/08/containers-docker-how-secure-are-they/)
|
> They?](http://blog.docker.com/2013/08/containers-docker-how-secure-are-they/)
|
||||||
|
|
||||||
There are three major areas to consider when reviewing Docker security:
|
There are three major areas to consider when reviewing Docker security:
|
||||||
|
|
||||||
|
@ -251,4 +251,4 @@ with Docker, since everything is provided by the kernel anyway.
|
||||||
|
|
||||||
For more context and especially for comparisons with VMs and other
|
For more context and especially for comparisons with VMs and other
|
||||||
container systems, please also see the [original blog post](
|
container systems, please also see the [original blog post](
|
||||||
http://blog.docker.io/2013/08/containers-docker-how-secure-are-they/).
|
http://blog.docker.com/2013/08/containers-docker-how-secure-are-they/).
|
||||||
|
|
|
@ -27,7 +27,7 @@ Let's start by creating a basic `Dockerfile` for our
|
||||||
new image.
|
new image.
|
||||||
|
|
||||||
FROM ubuntu:13.04
|
FROM ubuntu:13.04
|
||||||
MAINTAINER examples@docker.io
|
MAINTAINER examples@docker.com
|
||||||
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
|
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get upgrade -y
|
RUN apt-get upgrade -y
|
||||||
|
|
|
@ -16,7 +16,7 @@ Docker's build environment itself is a Docker container, so the first
|
||||||
step is to install Docker on your system.
|
step is to install Docker on your system.
|
||||||
|
|
||||||
You can follow the [install instructions most relevant to your
|
You can follow the [install instructions most relevant to your
|
||||||
system](https://docs.docker.io/installation/). Make sure you
|
system](https://docs.docker.com/installation/). Make sure you
|
||||||
have a working, up-to-date docker installation, then continue to the
|
have a working, up-to-date docker installation, then continue to the
|
||||||
next step.
|
next step.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
#
|
#
|
||||||
# example Dockerfile for http://docs.docker.io/en/latest/examples/postgresql_service/
|
# example Dockerfile for http://docs.docker.com/examples/postgresql_service/
|
||||||
#
|
#
|
||||||
|
|
||||||
FROM ubuntu
|
FROM ubuntu
|
||||||
|
|
|
@ -21,7 +21,7 @@ Start by creating a new `Dockerfile`:
|
||||||
> suitably secure.
|
> suitably secure.
|
||||||
|
|
||||||
#
|
#
|
||||||
# example Dockerfile for http://docs.docker.io/examples/postgresql_service/
|
# example Dockerfile for http://docs.docker.com/examples/postgresql_service/
|
||||||
#
|
#
|
||||||
|
|
||||||
FROM ubuntu
|
FROM ubuntu
|
||||||
|
|
|
@ -178,13 +178,13 @@ Cloud:
|
||||||
### How do I report a security issue with Docker?
|
### How do I report a security issue with Docker?
|
||||||
|
|
||||||
You can learn about the project's security policy
|
You can learn about the project's security policy
|
||||||
[here](https://www.docker.io/security/) and report security issues to
|
[here](https://www.docker.com/security/) and report security issues to
|
||||||
this [mailbox](mailto:security@docker.com).
|
this [mailbox](mailto:security@docker.com).
|
||||||
|
|
||||||
### Why do I need to sign my commits to Docker with the DCO?
|
### Why do I need to sign my commits to Docker with the DCO?
|
||||||
|
|
||||||
Please read [our blog post](
|
Please read [our blog post](
|
||||||
http://blog.docker.io/2014/01/docker-code-contributions-require-developer-certificate-of-origin/)
|
http://blog.docker.com/2014/01/docker-code-contributions-require-developer-certificate-of-origin/)
|
||||||
on the introduction of the DCO.
|
on the introduction of the DCO.
|
||||||
|
|
||||||
### When building an image, should I prefer system libraries or bundled ones?
|
### When building an image, should I prefer system libraries or bundled ones?
|
||||||
|
|
|
@ -112,7 +112,7 @@ Docker images are the **build** component of Docker.
|
||||||
#### Docker Registries
|
#### Docker Registries
|
||||||
Docker registries hold images. These are public or private stores from which you upload
|
Docker registries hold images. These are public or private stores from which you upload
|
||||||
or download images. The public Docker registry is called
|
or download images. The public Docker registry is called
|
||||||
[Docker Hub](http://index.docker.io). It provides a huge collection of existing
|
[Docker Hub](http://hub.docker.com). It provides a huge collection of existing
|
||||||
images for your use. These can be images you create yourself or you
|
images for your use. These can be images you create yourself or you
|
||||||
can use images that others have previously created. Docker registries are the
|
can use images that others have previously created. Docker registries are the
|
||||||
**distribution** component of Docker.
|
**distribution** component of Docker.
|
||||||
|
@ -156,7 +156,7 @@ basis for a new image, for example if you have a base Apache image you could use
|
||||||
this as the base of all your web application images.
|
this as the base of all your web application images.
|
||||||
|
|
||||||
> **Note:** Docker usually gets these base images from
|
> **Note:** Docker usually gets these base images from
|
||||||
> [Docker Hub](https://index.docker.io).
|
> [Docker Hub](https://hub.docker.com).
|
||||||
>
|
>
|
||||||
Docker images are then built from these base images using a simple, descriptive
|
Docker images are then built from these base images using a simple, descriptive
|
||||||
set of steps we call *instructions*. Each instruction creates a new layer in our
|
set of steps we call *instructions*. Each instruction creates a new layer in our
|
||||||
|
@ -173,17 +173,17 @@ returns a final image.
|
||||||
|
|
||||||
### How does a Docker registry work?
|
### How does a Docker registry work?
|
||||||
The Docker registry is the store for your Docker images. Once you build a Docker
|
The Docker registry is the store for your Docker images. Once you build a Docker
|
||||||
image you can *push* it to a public registry [Docker Hub](https://index.docker.io) or to
|
image you can *push* it to a public registry [Docker Hub](https://hub.docker.com) or to
|
||||||
your own registry running behind your firewall.
|
your own registry running behind your firewall.
|
||||||
|
|
||||||
Using the Docker client, you can search for already published images and then
|
Using the Docker client, you can search for already published images and then
|
||||||
pull them down to your Docker host to build containers from them.
|
pull them down to your Docker host to build containers from them.
|
||||||
|
|
||||||
[Docker Hub](https://index.docker.io) provides both public and private storage
|
[Docker Hub](https://hub.docker.com) provides both public and private storage
|
||||||
for images. Public storage is searchable and can be downloaded by anyone.
|
for images. Public storage is searchable and can be downloaded by anyone.
|
||||||
Private storage is excluded from search results and only you and your users can
|
Private storage is excluded from search results and only you and your users can
|
||||||
pull images down and use them to build containers. You can [sign up for a storage plan
|
pull images down and use them to build containers. You can [sign up for a storage plan
|
||||||
here](https://index.docker.io/plans).
|
here](https://hub.docker.com/plans).
|
||||||
|
|
||||||
### How does a container work?
|
### How does a container work?
|
||||||
A container consists of an operating system, user-added files, and meta-data. As
|
A container consists of an operating system, user-added files, and meta-data. As
|
||||||
|
@ -216,7 +216,7 @@ In order, Docker does the following:
|
||||||
|
|
||||||
- **Pulls the `ubuntu` image:** Docker checks for the presence of the `ubuntu`
|
- **Pulls the `ubuntu` image:** Docker checks for the presence of the `ubuntu`
|
||||||
image and, if it doesn't exist locally on the host, then Docker downloads it from
|
image and, if it doesn't exist locally on the host, then Docker downloads it from
|
||||||
[Docker Hub](https://index.docker.io). If the image already exists, then Docker
|
[Docker Hub](https://hub.docker.com). If the image already exists, then Docker
|
||||||
uses it for the new container.
|
uses it for the new container.
|
||||||
- **Creates a new container:** Once Docker has the image, it uses it to create a
|
- **Creates a new container:** Once Docker has the image, it uses it to create a
|
||||||
container.
|
container.
|
||||||
|
|
|
@ -240,7 +240,7 @@ to access to all devices on the host as well as set some configuration
|
||||||
in AppArmor to allow the container nearly all the same access to the
|
in AppArmor to allow the container nearly all the same access to the
|
||||||
host as processes running outside containers on the host. Additional
|
host as processes running outside containers on the host. Additional
|
||||||
information about running with `--privileged` is available on the
|
information about running with `--privileged` is available on the
|
||||||
[Docker Blog](http://blog.docker.io/2013/09/docker-can-now-run-within-docker/).
|
[Docker Blog](http://blog.docker.com/2013/09/docker-can-now-run-within-docker/).
|
||||||
|
|
||||||
If the Docker daemon was started using the `lxc` exec-driver
|
If the Docker daemon was started using the `lxc` exec-driver
|
||||||
(`docker -d --exec-driver=lxc`) then the operator can also specify LXC options
|
(`docker -d --exec-driver=lxc`) then the operator can also specify LXC options
|
||||||
|
|
|
@ -82,11 +82,11 @@ Go to [Working with Docker Hub](/userguide/dockerrepos).
|
||||||
|
|
||||||
## Getting help
|
## Getting help
|
||||||
|
|
||||||
* [Docker homepage](http://www.docker.io/)
|
* [Docker homepage](http://www.docker.com/)
|
||||||
* [Docker Hub](https://hub.docker.com)
|
* [Docker Hub](https://hub.docker.com)
|
||||||
* [Docker blog](http://blog.docker.io/)
|
* [Docker blog](http://blog.docker.com/)
|
||||||
* [Docker documentation](http://docs.docker.io/)
|
* [Docker documentation](http://docs.docker.com/)
|
||||||
* [Docker Getting Started Guide](http://www.docker.io/gettingstarted/)
|
* [Docker Getting Started Guide](http://www.docker.com/gettingstarted/)
|
||||||
* [Docker code on GitHub](https://github.com/dotcloud/docker)
|
* [Docker code on GitHub](https://github.com/dotcloud/docker)
|
||||||
* [Docker mailing
|
* [Docker mailing
|
||||||
list](https://groups.google.com/forum/#!forum/docker-user)
|
list](https://groups.google.com/forum/#!forum/docker-user)
|
||||||
|
|
|
@ -19,7 +19,7 @@ In the process we learned about several Docker commands:
|
||||||
|
|
||||||
> **Tip:**
|
> **Tip:**
|
||||||
> Another way to learn about `docker` commands is our
|
> Another way to learn about `docker` commands is our
|
||||||
> [interactive tutorial](https://www.docker.io/gettingstarted).
|
> [interactive tutorial](https://www.docker.com/tryit/).
|
||||||
|
|
||||||
The `docker` client is pretty simple. Each action you can take
|
The `docker` client is pretty simple. Each action you can take
|
||||||
with Docker is a command and each command can take a series of
|
with Docker is a command and each command can take a series of
|
||||||
|
|
4
docs/theme/mkdocs/css/main.css
vendored
4
docs/theme/mkdocs/css/main.css
vendored
|
@ -4,7 +4,7 @@
|
||||||
Core Docker style file
|
Core Docker style file
|
||||||
|
|
||||||
used on
|
used on
|
||||||
www.docker.io
|
www.docker.com
|
||||||
docker-index
|
docker-index
|
||||||
****************************** */
|
****************************** */
|
||||||
/* this is about 10% darker, but slightly different */
|
/* this is about 10% darker, but slightly different */
|
||||||
|
@ -2146,4 +2146,4 @@ a:hover {
|
||||||
background: url("../img/homepage/docker-whale-home-logo+@2x.png");
|
background: url("../img/homepage/docker-whale-home-logo+@2x.png");
|
||||||
background-size: 459px 261px;
|
background-size: 459px 261px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,7 +3,7 @@ set -e
|
||||||
|
|
||||||
# DinD: a wrapper script which allows docker to be run inside a docker container.
|
# DinD: a wrapper script which allows docker to be run inside a docker container.
|
||||||
# Original version by Jerome Petazzoni <jerome@dotcloud.com>
|
# Original version by Jerome Petazzoni <jerome@dotcloud.com>
|
||||||
# See the blog post: http://blog.docker.io/2013/09/docker-can-now-run-within-docker/
|
# See the blog post: http://blog.docker.com/2013/09/docker-can-now-run-within-docker/
|
||||||
#
|
#
|
||||||
# This script should be executed inside a docker container in privilieged mode
|
# This script should be executed inside a docker container in privilieged mode
|
||||||
# ('docker run --privileged', introduced in docker 0.6).
|
# ('docker run --privileged', introduced in docker 0.6).
|
||||||
|
|
|
@ -20,7 +20,7 @@ AWS | packages (S3 bucket), dotCloud PAAS, dev-env, ci
|
||||||
CloudFlare | cdn
|
CloudFlare | cdn
|
||||||
Digital Ocean | ci
|
Digital Ocean | ci
|
||||||
dotCloud PAAS | website, index, registry, ssl, blog
|
dotCloud PAAS | website, index, registry, ssl, blog
|
||||||
DynECT | dns (docker.io)
|
DynECT | dns (docker.com)
|
||||||
GitHub | repository
|
GitHub | repository
|
||||||
Linode | stackbrew
|
Linode | stackbrew
|
||||||
Mailgun | outgoing e-mail
|
Mailgun | outgoing e-mail
|
||||||
|
@ -36,20 +36,19 @@ and which service is handling them.
|
||||||
|
|
||||||
URL | Service
|
URL | Service
|
||||||
---------------------------------------------|---------------------------------
|
---------------------------------------------|---------------------------------
|
||||||
http://blog.docker.io/ | blog
|
http://blog.docker.com/ | blog
|
||||||
*http://cdn-registry-1.docker.io/ | registry (pull)
|
*http://cdn-registry-1.docker.io/ | registry (pull)
|
||||||
http://debug.docker.io/ | debug tool
|
http://debug.docker.io/ | debug tool
|
||||||
http://docs.docker.io/ | docsproxy (proxy to readthedocs)
|
http://docs.docker.com/ | documentation served from an S3 bucket
|
||||||
http://docker-ci.dotcloud.com/ | ci
|
http://docker-ci.dotcloud.com/ | ci
|
||||||
http://docker.io/ | redirect to www.docker.io (dynect)
|
http://docker.com/ | redirect to www.docker.com (dynect)
|
||||||
http://docker.readthedocs.org/ | docs
|
|
||||||
*http://get.docker.io/ | packages
|
*http://get.docker.io/ | packages
|
||||||
https://github.com/dotcloud/docker | repository
|
https://github.com/dotcloud/docker | repository
|
||||||
*https://index.docker.io/ | index
|
*https://hub.docker.com/ | Docker Hub
|
||||||
http://registry-1.docker.io/ | registry (push)
|
http://registry-1.docker.io/ | registry (push)
|
||||||
http://staging-docker-ci.dotcloud.com/ | ci
|
http://staging-docker-ci.dotcloud.com/ | ci
|
||||||
*http://test.docker.io/ | packages
|
*http://test.docker.io/ | packages
|
||||||
*http://www.docker.io/ | website
|
*http://www.docker.com/ | website
|
||||||
http://? (internal URL, not for public use) | stackbrew
|
http://? (internal URL, not for public use) | stackbrew
|
||||||
|
|
||||||
*Ordered-by: lexicographic*
|
*Ordered-by: lexicographic*
|
||||||
|
|
|
@ -8,8 +8,8 @@ if [ -n "$(git status --porcelain)" ]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
PACKAGE_ARCHITECTURE="$(dpkg-architecture -qDEB_HOST_ARCH)"
|
PACKAGE_ARCHITECTURE="$(dpkg-architecture -qDEB_HOST_ARCH)"
|
||||||
PACKAGE_URL="http://www.docker.io/"
|
PACKAGE_URL="http://www.docker.com/"
|
||||||
PACKAGE_MAINTAINER="docker@dotcloud.com"
|
PACKAGE_MAINTAINER="support@docker.com"
|
||||||
PACKAGE_DESCRIPTION="Linux container runtime
|
PACKAGE_DESCRIPTION="Linux container runtime
|
||||||
Docker complements LXC with a high-level API which operates at the process
|
Docker complements LXC with a high-level API which operates at the process
|
||||||
level. It runs unix processes with strong guarantees of isolation and
|
level. It runs unix processes with strong guarantees of isolation and
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue