Docker-DCO-1.1-Signed-off-by: SvenDowideit <SvenDowideit@home.org.au> (github: SvenDowideit)
| ... | ... |
@@ -17,7 +17,7 @@ This information will help us review and fix your issue faster. |
| 17 | 17 |
|
| 18 | 18 |
For instructions on setting up your development environment, please |
| 19 | 19 |
see our dedicated [dev environment setup |
| 20 |
-docs](http://docs.docker.io/en/latest/contributing/devenvironment/). |
|
| 20 |
+docs](http://docs.docker.com/contributing/devenvironment/). |
|
| 21 | 21 |
|
| 22 | 22 |
## Contribution guidelines |
| 23 | 23 |
|
| ... | ... |
@@ -190,7 +190,7 @@ There are several exceptions to the signing requirement. Currently these are: |
| 190 | 190 |
* Your patch fixes Markdown formatting or syntax errors in the |
| 191 | 191 |
documentation contained in the `docs` directory. |
| 192 | 192 |
|
| 193 |
-If you have any questions, please refer to the FAQ in the [docs](http://docs.docker.io) |
|
| 193 |
+If you have any questions, please refer to the FAQ in the [docs](http://docs.docker.com) |
|
| 194 | 194 |
|
| 195 | 195 |
### How can I become a maintainer? |
| 196 | 196 |
|
| ... | ... |
@@ -160,7 +160,7 @@ Docker can be used to run short-lived commands, long-running daemons |
| 160 | 160 |
(app servers, databases etc.), interactive shell sessions, etc. |
| 161 | 161 |
|
| 162 | 162 |
You can find a [list of real-world |
| 163 |
-examples](http://docs.docker.io/en/latest/examples/) in the |
|
| 163 |
+examples](http://docs.docker.com/examples/) in the |
|
| 164 | 164 |
documentation. |
| 165 | 165 |
|
| 166 | 166 |
Under the hood |
| ... | ... |
@@ -2,10 +2,10 @@ |
| 2 | 2 |
# |
| 3 | 3 |
# /etc/rc.d/init.d/docker |
| 4 | 4 |
# |
| 5 |
-# Daemon for docker.io |
|
| 5 |
+# Daemon for docker.com |
|
| 6 | 6 |
# |
| 7 | 7 |
# chkconfig: 2345 95 95 |
| 8 |
-# description: Daemon for docker.io |
|
| 8 |
+# description: Daemon for docker.com |
|
| 9 | 9 |
|
| 10 | 10 |
### BEGIN INIT INFO |
| 11 | 11 |
# Provides: docker |
| ... | ... |
@@ -16,7 +16,7 @@ |
| 16 | 16 |
# Default-Start: 2 3 4 5 |
| 17 | 17 |
# Default-Stop: 0 1 6 |
| 18 | 18 |
# Short-Description: start and stop docker |
| 19 |
-# Description: Daemon for docker.io |
|
| 19 |
+# Description: Daemon for docker.com |
|
| 20 | 20 |
### END INIT INFO |
| 21 | 21 |
|
| 22 | 22 |
# Source function library. |
| ... | ... |
@@ -836,7 +836,7 @@ func NewDaemonFromDirectory(config *daemonconfig.Config, eng *engine.Engine) (*D |
| 836 | 836 |
localCopy := path.Join(config.Root, "init", fmt.Sprintf("dockerinit-%s", dockerversion.VERSION))
|
| 837 | 837 |
sysInitPath := utils.DockerInitPath(localCopy) |
| 838 | 838 |
if sysInitPath == "" {
|
| 839 |
- 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.")
|
|
| 839 |
+ 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.")
|
|
| 840 | 840 |
} |
| 841 | 841 |
|
| 842 | 842 |
if sysInitPath != localCopy {
|
| ... | ... |
@@ -3,7 +3,7 @@ |
| 3 | 3 |
The source for Docker documentation is here under `sources/` and uses extended |
| 4 | 4 |
Markdown, as implemented by [MkDocs](http://mkdocs.org). |
| 5 | 5 |
|
| 6 |
-The HTML files are built and hosted on `https://docs.docker.io`, and update |
|
| 6 |
+The HTML files are built and hosted on `https://docs.docker.com`, and update |
|
| 7 | 7 |
automatically after each change to the master or release branch of [Docker on |
| 8 | 8 |
GitHub](https://github.com/dotcloud/docker) thanks to post-commit hooks. The |
| 9 | 9 |
`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 |
| 21 | 21 |
base your changes on the `docs` branch. |
| 22 | 22 |
|
| 23 | 23 |
Also, now that we have a `docs` branch, we can keep the |
| 24 |
-[http://docs.docker.io](http://docs.docker.io) docs up to date with any bugs |
|
| 24 |
+[http://docs.docker.com](http://docs.docker.com) docs up to date with any bugs |
|
| 25 | 25 |
found between Docker code releases. |
| 26 | 26 |
|
| 27 | 27 |
**Warning**: When *reading* the docs, the |
| 28 |
-[http://beta-docs.docker.io](http://beta-docs.docker.io) documentation may |
|
| 28 |
+[http://docs-stage.docker.com](http://docs-stage.docker.com) documentation may |
|
| 29 | 29 |
include features not yet part of any official Docker release. The `beta-docs` |
| 30 | 30 |
site should be used only for understanding bleeding-edge development and |
| 31 |
-`docs.docker.io` (which points to the `docs` branch`) should be used for the |
|
| 31 |
+`docs.docker.com` (which points to the `docs` branch`) should be used for the |
|
| 32 | 32 |
latest official release. |
| 33 | 33 |
|
| 34 | 34 |
## Contributing |
| ... | ... |
@@ -203,4 +203,4 @@ or |
| 203 | 203 |
run later, during the next build stage. |
| 204 | 204 |
|
| 205 | 205 |
# HISTORY |
| 206 |
-*May 2014, Compiled by Zac Dover (zdover at redhat dot com) based on docker.io Dockerfile documentation. |
|
| 206 |
+*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 |
| 68 | 68 |
the man pages inside the `docker/docs/man/man1` directory using |
| 69 | 69 |
Docker volumes. For more information on Docker volumes see the man page for |
| 70 | 70 |
`docker run` and also look at the article [Sharing Directories via Volumes] |
| 71 |
-(http://docs.docker.io/use/working_with_volumes/). |
|
| 71 |
+(http://docs.docker.com/use/working_with_volumes/). |
| ... | ... |
@@ -57,5 +57,5 @@ attach** command: |
| 57 | 57 |
|
| 58 | 58 |
# HISTORY |
| 59 | 59 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 60 |
-based on docker.io source material and internal work. |
|
| 60 |
+based on docker.com source material and internal work. |
|
| 61 | 61 |
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. |
| 117 | 117 |
|
| 118 | 118 |
# HISTORY |
| 119 | 119 |
March 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 120 |
-based on docker.io source material and internal work. |
|
| 120 |
+based on docker.com source material and internal work. |
|
| 121 | 121 |
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: |
| 35 | 35 |
|
| 36 | 36 |
# HISTORY |
| 37 | 37 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 38 |
-based on docker.io source material and in |
|
| 38 |
+based on docker.com source material and in |
|
| 39 | 39 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -24,5 +24,5 @@ the exited container to the current dir on the host: |
| 24 | 24 |
|
| 25 | 25 |
# HISTORY |
| 26 | 26 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 27 |
-based on docker.io source material and internal work. |
|
| 27 |
+based on docker.com source material and internal work. |
|
| 28 | 28 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -43,5 +43,5 @@ Inspect the changes to on a nginx container: |
| 43 | 43 |
|
| 44 | 44 |
# HISTORY |
| 45 | 45 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 46 |
-based on docker.io source material and internal work. |
|
| 46 |
+based on docker.com source material and internal work. |
|
| 47 | 47 |
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 |
| 49 | 49 |
|
| 50 | 50 |
# HISTORY |
| 51 | 51 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 52 |
-based on docker.io source material and internal work. |
|
| 52 |
+based on docker.com source material and internal work. |
|
| 53 | 53 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -26,5 +26,5 @@ called test.tar: |
| 26 | 26 |
|
| 27 | 27 |
# HISTORY |
| 28 | 28 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 29 |
-based on docker.io source material and internal work. |
|
| 29 |
+based on docker.com source material and internal work. |
|
| 30 | 30 |
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. |
| 30 | 30 |
|
| 31 | 31 |
# HISTORY |
| 32 | 32 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 33 |
-based on docker.io source material and internal work. |
|
| 33 |
+based on docker.com source material and internal work. |
|
| 34 | 34 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -86,5 +86,5 @@ tools. |
| 86 | 86 |
|
| 87 | 87 |
# HISTORY |
| 88 | 88 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 89 |
-based on docker.io source material and internal work. |
|
| 89 |
+based on docker.com source material and internal work. |
|
| 90 | 90 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -39,5 +39,5 @@ Import to docker via pipe and stdin: |
| 39 | 39 |
|
| 40 | 40 |
# HISTORY |
| 41 | 41 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 42 |
-based on docker.io source material and internal work. |
|
| 42 |
+based on docker.com source material and internal work. |
|
| 43 | 43 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -44,5 +44,5 @@ Here is a sample output: |
| 44 | 44 |
|
| 45 | 45 |
# HISTORY |
| 46 | 46 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 47 |
-based on docker.io source material and internal work. |
|
| 47 |
+based on docker.com source material and internal work. |
|
| 48 | 48 |
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 |
| 225 | 225 |
|
| 226 | 226 |
# HISTORY |
| 227 | 227 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 228 |
-based on docker.io source material and internal work. |
|
| 228 |
+based on docker.com source material and internal work. |
|
| 229 | 229 |
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, |
| 20 | 20 |
|
| 21 | 21 |
# HISTORY |
| 22 | 22 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 23 |
- based on docker.io source material and internal work. |
|
| 23 |
+ based on docker.com source material and internal work. |
|
| 24 | 24 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -34,5 +34,5 @@ Restores both images and tags. |
| 34 | 34 |
|
| 35 | 35 |
# HISTORY |
| 36 | 36 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 37 |
-based on docker.io source material and internal work. |
|
| 37 |
+based on docker.com source material and internal work. |
|
| 38 | 38 |
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. |
| 34 | 34 |
|
| 35 | 35 |
# HISTORY |
| 36 | 36 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 37 |
-based on docker.io source material and internal work. |
|
| 37 |
+based on docker.com source material and internal work. |
|
| 38 | 38 |
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. |
| 29 | 29 |
|
| 30 | 30 |
# HISTORY |
| 31 | 31 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 32 |
-based on docker.io source material and internal work. |
|
| 32 |
+based on docker.com source material and internal work. |
|
| 33 | 33 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -66,5 +66,5 @@ the running containers. |
| 66 | 66 |
|
| 67 | 67 |
# HISTORY |
| 68 | 68 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 69 |
-based on docker.io source material and internal work. |
|
| 69 |
+based on docker.com source material and internal work. |
|
| 70 | 70 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| ... | ... |
@@ -51,5 +51,10 @@ There are no available options. |
| 51 | 51 |
|
| 52 | 52 |
# HISTORY |
| 53 | 53 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 54 |
+<<<<<<< HEAD |
|
| 54 | 55 |
based on docker.io source material and internal work. |
| 55 | 56 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 57 |
+======= |
|
| 58 |
+based on docker.com source material and internal work. |
|
| 59 |
+ |
|
| 60 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -10,7 +10,7 @@ NAME[:TAG] |
| 10 | 10 |
|
| 11 | 11 |
# DESCRIPTION |
| 12 | 12 |
Push an image or a repository to a registry. The default registry is the Docker |
| 13 |
-Index located at [index.docker.io](https://index.docker.io/v1/). However the |
|
| 13 |
+Hub located at [hub.docker.com](https://hub.docker.com/). However the |
|
| 14 | 14 |
image can be pushed to another, perhaps private, registry as demonstrated in |
| 15 | 15 |
the example below. |
| 16 | 16 |
|
| ... | ... |
@@ -28,7 +28,7 @@ and then committing it to a new image name: |
| 28 | 28 |
|
| 29 | 29 |
Now push the image to the registry using the image ID. In this example |
| 30 | 30 |
the registry is on host named registry-host and listening on port 5000. |
| 31 |
-Default Docker commands will push to the default `index.docker.io` |
|
| 31 |
+Default Docker commands will push to the default `hub.docker.com` |
|
| 32 | 32 |
registry. Instead, push to the local registry, which is on a host called |
| 33 | 33 |
registry-host*. To do this, tag the image with the host name or IP |
| 34 | 34 |
address, and the port of the registry: |
| ... | ... |
@@ -45,5 +45,9 @@ listed. |
| 45 | 45 |
|
| 46 | 46 |
# HISTORY |
| 47 | 47 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 48 |
+<<<<<<< HEAD |
|
| 48 | 49 |
based on docker.io source material and internal work. |
| 49 | 50 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 51 |
+======= |
|
| 52 |
+based on docker.com source material and internal work. |
|
| 53 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -18,5 +18,10 @@ Restart each container listed. |
| 18 | 18 |
|
| 19 | 19 |
# HISTORY |
| 20 | 20 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 21 |
+<<<<<<< HEAD |
|
| 21 | 22 |
based on docker.io source material and internal work. |
| 22 | 23 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 24 |
+======= |
|
| 25 |
+based on docker.com source material and internal work. |
|
| 26 |
+ |
|
| 27 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -47,5 +47,9 @@ command. The use that name as follows: |
| 47 | 47 |
|
| 48 | 48 |
# HISTORY |
| 49 | 49 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 50 |
+<<<<<<< HEAD |
|
| 50 | 51 |
based on docker.io source material and internal work. |
| 51 | 52 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 53 |
+======= |
|
| 54 |
+based on docker.com source material and internal work. |
|
| 55 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -34,5 +34,9 @@ Here is an example of removing and image: |
| 34 | 34 |
|
| 35 | 35 |
# HISTORY |
| 36 | 36 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 37 |
+<<<<<<< HEAD |
|
| 37 | 38 |
based on docker.io source material and internal work. |
| 38 | 39 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 40 |
+======= |
|
| 41 |
+based on docker.com source material and internal work. |
|
| 42 |
+>>>>>>> 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. |
| 369 | 369 |
|
| 370 | 370 |
# HISTORY |
| 371 | 371 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 372 |
+<<<<<<< HEAD |
|
| 372 | 373 |
based on docker.io source material and internal work. |
| 373 | 374 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 375 |
+======= |
|
| 376 |
+based on docker.com source material and internal work. |
|
| 377 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -33,5 +33,10 @@ fedora image to a fedora-latest.tar: |
| 33 | 33 |
|
| 34 | 34 |
# HISTORY |
| 35 | 35 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 36 |
+<<<<<<< HEAD |
|
| 36 | 37 |
based on docker.io source material and internal work. |
| 37 | 38 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 39 |
+======= |
|
| 40 |
+based on docker.com source material and internal work. |
|
| 41 |
+ |
|
| 42 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -54,5 +54,9 @@ ranked 1 or higher: |
| 54 | 54 |
|
| 55 | 55 |
# HISTORY |
| 56 | 56 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 57 |
+<<<<<<< HEAD |
|
| 57 | 58 |
based on docker.io source material and internal work. |
| 58 | 59 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 60 |
+======= |
|
| 61 |
+based on docker.com source material and internal work. |
|
| 62 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -23,5 +23,9 @@ Start a stopped container. |
| 23 | 23 |
|
| 24 | 24 |
# HISTORY |
| 25 | 25 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 26 |
+<<<<<<< HEAD |
|
| 26 | 27 |
based on docker.io source material and internal work. |
| 27 | 28 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 29 |
+======= |
|
| 30 |
+based on docker.com source material and internal work. |
|
| 31 |
+>>>>>>> 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 |
| 19 | 19 |
|
| 20 | 20 |
# HISTORY |
| 21 | 21 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 22 |
+<<<<<<< HEAD |
|
| 22 | 23 |
based on docker.io source material and internal work. |
| 23 | 24 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 25 |
+======= |
|
| 26 |
+based on docker.com source material and internal work. |
|
| 27 |
+>>>>>>> 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). |
| 54 | 54 |
|
| 55 | 55 |
# HISTORY |
| 56 | 56 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 57 |
+<<<<<<< HEAD |
|
| 57 | 58 |
based on docker.io source material and internal work. |
| 58 | 59 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 60 |
+======= |
|
| 61 |
+based on docker.com source material and internal work. |
|
| 62 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -27,5 +27,10 @@ Run **docker top** with the ps option of -x: |
| 27 | 27 |
|
| 28 | 28 |
# HISTORY |
| 29 | 29 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 30 |
+<<<<<<< HEAD |
|
| 30 | 31 |
based on docker.io source material and internal work. |
| 31 | 32 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 33 |
+======= |
|
| 34 |
+based on docker.com source material and internal work. |
|
| 35 |
+ |
|
| 36 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -24,5 +24,10 @@ There are no available options. |
| 24 | 24 |
|
| 25 | 25 |
# HISTORY |
| 26 | 26 |
April 2014, Originally compiled by William Henry (whenry at redhat dot com) |
| 27 |
+<<<<<<< HEAD |
|
| 27 | 28 |
based on docker.io source material and internal work. |
| 28 | 29 |
June 2014, updated by Sven Dowideit <SvenDowideit@home.org.au> |
| 30 |
+======= |
|
| 31 |
+based on docker.com source material and internal work. |
|
| 32 |
+ |
|
| 33 |
+>>>>>>> 834ef8a... I'm going to wish I didn't do this |
| ... | ... |
@@ -9,7 +9,7 @@ To publish the Docker documentation you need to set your access_key and secret_k |
| 9 | 9 |
(with the keys in a [profile $AWS_S3_BUCKET] section - so you can have more than one set of keys in your file) |
| 10 | 10 |
and set the AWS_S3_BUCKET env var to the name of your bucket. |
| 11 | 11 |
|
| 12 |
-make AWS_S3_BUCKET=beta-docs.docker.io docs-release |
|
| 12 |
+make AWS_S3_BUCKET=docs-stage.docker.com docs-release |
|
| 13 | 13 |
|
| 14 | 14 |
will then push the documentation site to your s3 bucket. |
| 15 | 15 |
EOF |
| ... | ... |
@@ -5,7 +5,7 @@ page_keywords: Docker, Docker documentation, security |
| 5 | 5 |
# Docker Security |
| 6 | 6 |
|
| 7 | 7 |
> *Adapted from* [Containers & Docker: How Secure are |
| 8 |
-> They?](http://blog.docker.io/2013/08/containers-docker-how-secure-are-they/) |
|
| 8 |
+> They?](http://blog.docker.com/2013/08/containers-docker-how-secure-are-they/) |
|
| 9 | 9 |
|
| 10 | 10 |
There are three major areas to consider when reviewing Docker security: |
| 11 | 11 |
|
| ... | ... |
@@ -251,4 +251,4 @@ with Docker, since everything is provided by the kernel anyway. |
| 251 | 251 |
|
| 252 | 252 |
For more context and especially for comparisons with VMs and other |
| 253 | 253 |
container systems, please also see the [original blog post]( |
| 254 |
-http://blog.docker.io/2013/08/containers-docker-how-secure-are-they/). |
|
| 254 |
+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 |
| 27 | 27 |
new image. |
| 28 | 28 |
|
| 29 | 29 |
FROM ubuntu:13.04 |
| 30 |
- MAINTAINER examples@docker.io |
|
| 30 |
+ MAINTAINER examples@docker.com |
|
| 31 | 31 |
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list |
| 32 | 32 |
RUN apt-get update |
| 33 | 33 |
RUN apt-get upgrade -y |
| ... | ... |
@@ -16,7 +16,7 @@ Docker's build environment itself is a Docker container, so the first |
| 16 | 16 |
step is to install Docker on your system. |
| 17 | 17 |
|
| 18 | 18 |
You can follow the [install instructions most relevant to your |
| 19 |
-system](https://docs.docker.io/installation/). Make sure you |
|
| 19 |
+system](https://docs.docker.com/installation/). Make sure you |
|
| 20 | 20 |
have a working, up-to-date docker installation, then continue to the |
| 21 | 21 |
next step. |
| 22 | 22 |
|
| ... | ... |
@@ -178,13 +178,13 @@ Cloud: |
| 178 | 178 |
### How do I report a security issue with Docker? |
| 179 | 179 |
|
| 180 | 180 |
You can learn about the project's security policy |
| 181 |
-[here](https://www.docker.io/security/) and report security issues to |
|
| 181 |
+[here](https://www.docker.com/security/) and report security issues to |
|
| 182 | 182 |
this [mailbox](mailto:security@docker.com). |
| 183 | 183 |
|
| 184 | 184 |
### Why do I need to sign my commits to Docker with the DCO? |
| 185 | 185 |
|
| 186 | 186 |
Please read [our blog post]( |
| 187 |
-http://blog.docker.io/2014/01/docker-code-contributions-require-developer-certificate-of-origin/) |
|
| 187 |
+http://blog.docker.com/2014/01/docker-code-contributions-require-developer-certificate-of-origin/) |
|
| 188 | 188 |
on the introduction of the DCO. |
| 189 | 189 |
|
| 190 | 190 |
### When building an image, should I prefer system libraries or bundled ones? |
| ... | ... |
@@ -112,7 +112,7 @@ Docker images are the **build** component of Docker. |
| 112 | 112 |
#### Docker Registries |
| 113 | 113 |
Docker registries hold images. These are public or private stores from which you upload |
| 114 | 114 |
or download images. The public Docker registry is called |
| 115 |
-[Docker Hub](http://index.docker.io). It provides a huge collection of existing |
|
| 115 |
+[Docker Hub](http://hub.docker.com). It provides a huge collection of existing |
|
| 116 | 116 |
images for your use. These can be images you create yourself or you |
| 117 | 117 |
can use images that others have previously created. Docker registries are the |
| 118 | 118 |
**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 |
| 156 | 156 |
this as the base of all your web application images. |
| 157 | 157 |
|
| 158 | 158 |
> **Note:** Docker usually gets these base images from |
| 159 |
-> [Docker Hub](https://index.docker.io). |
|
| 159 |
+> [Docker Hub](https://hub.docker.com). |
|
| 160 | 160 |
> |
| 161 | 161 |
Docker images are then built from these base images using a simple, descriptive |
| 162 | 162 |
set of steps we call *instructions*. Each instruction creates a new layer in our |
| ... | ... |
@@ -173,17 +173,17 @@ returns a final image. |
| 173 | 173 |
|
| 174 | 174 |
### How does a Docker registry work? |
| 175 | 175 |
The Docker registry is the store for your Docker images. Once you build a Docker |
| 176 |
-image you can *push* it to a public registry [Docker Hub](https://index.docker.io) or to |
|
| 176 |
+image you can *push* it to a public registry [Docker Hub](https://hub.docker.com) or to |
|
| 177 | 177 |
your own registry running behind your firewall. |
| 178 | 178 |
|
| 179 | 179 |
Using the Docker client, you can search for already published images and then |
| 180 | 180 |
pull them down to your Docker host to build containers from them. |
| 181 | 181 |
|
| 182 |
-[Docker Hub](https://index.docker.io) provides both public and private storage |
|
| 182 |
+[Docker Hub](https://hub.docker.com) provides both public and private storage |
|
| 183 | 183 |
for images. Public storage is searchable and can be downloaded by anyone. |
| 184 | 184 |
Private storage is excluded from search results and only you and your users can |
| 185 | 185 |
pull images down and use them to build containers. You can [sign up for a storage plan |
| 186 |
-here](https://index.docker.io/plans). |
|
| 186 |
+here](https://hub.docker.com/plans). |
|
| 187 | 187 |
|
| 188 | 188 |
### How does a container work? |
| 189 | 189 |
A container consists of an operating system, user-added files, and meta-data. As |
| ... | ... |
@@ -216,7 +216,7 @@ In order, Docker does the following: |
| 216 | 216 |
|
| 217 | 217 |
- **Pulls the `ubuntu` image:** Docker checks for the presence of the `ubuntu` |
| 218 | 218 |
image and, if it doesn't exist locally on the host, then Docker downloads it from |
| 219 |
-[Docker Hub](https://index.docker.io). If the image already exists, then Docker |
|
| 219 |
+[Docker Hub](https://hub.docker.com). If the image already exists, then Docker |
|
| 220 | 220 |
uses it for the new container. |
| 221 | 221 |
- **Creates a new container:** Once Docker has the image, it uses it to create a |
| 222 | 222 |
container. |
| ... | ... |
@@ -240,7 +240,7 @@ to access to all devices on the host as well as set some configuration |
| 240 | 240 |
in AppArmor to allow the container nearly all the same access to the |
| 241 | 241 |
host as processes running outside containers on the host. Additional |
| 242 | 242 |
information about running with `--privileged` is available on the |
| 243 |
-[Docker Blog](http://blog.docker.io/2013/09/docker-can-now-run-within-docker/). |
|
| 243 |
+[Docker Blog](http://blog.docker.com/2013/09/docker-can-now-run-within-docker/). |
|
| 244 | 244 |
|
| 245 | 245 |
If the Docker daemon was started using the `lxc` exec-driver |
| 246 | 246 |
(`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). |
| 82 | 82 |
|
| 83 | 83 |
## Getting help |
| 84 | 84 |
|
| 85 |
-* [Docker homepage](http://www.docker.io/) |
|
| 85 |
+* [Docker homepage](http://www.docker.com/) |
|
| 86 | 86 |
* [Docker Hub](https://hub.docker.com) |
| 87 |
-* [Docker blog](http://blog.docker.io/) |
|
| 88 |
-* [Docker documentation](http://docs.docker.io/) |
|
| 89 |
-* [Docker Getting Started Guide](http://www.docker.io/gettingstarted/) |
|
| 87 |
+* [Docker blog](http://blog.docker.com/) |
|
| 88 |
+* [Docker documentation](http://docs.docker.com/) |
|
| 89 |
+* [Docker Getting Started Guide](http://www.docker.com/gettingstarted/) |
|
| 90 | 90 |
* [Docker code on GitHub](https://github.com/dotcloud/docker) |
| 91 | 91 |
* [Docker mailing |
| 92 | 92 |
list](https://groups.google.com/forum/#!forum/docker-user) |
| ... | ... |
@@ -19,7 +19,7 @@ In the process we learned about several Docker commands: |
| 19 | 19 |
|
| 20 | 20 |
> **Tip:** |
| 21 | 21 |
> Another way to learn about `docker` commands is our |
| 22 |
-> [interactive tutorial](https://www.docker.io/gettingstarted). |
|
| 22 |
+> [interactive tutorial](https://www.docker.com/tryit/). |
|
| 23 | 23 |
|
| 24 | 24 |
The `docker` client is pretty simple. Each action you can take |
| 25 | 25 |
with Docker is a command and each command can take a series of |
| ... | ... |
@@ -4,7 +4,7 @@ |
| 4 | 4 |
Core Docker style file |
| 5 | 5 |
|
| 6 | 6 |
used on |
| 7 |
- www.docker.io |
|
| 7 |
+ www.docker.com |
|
| 8 | 8 |
docker-index |
| 9 | 9 |
****************************** */ |
| 10 | 10 |
/* this is about 10% darker, but slightly different */ |
| ... | ... |
@@ -2146,4 +2146,4 @@ a:hover {
|
| 2146 | 2146 |
background: url("../img/homepage/docker-whale-home-logo+@2x.png");
|
| 2147 | 2147 |
background-size: 459px 261px; |
| 2148 | 2148 |
} |
| 2149 |
-} |
|
| 2150 | 2149 |
\ No newline at end of file |
| 2150 |
+} |
| ... | ... |
@@ -3,7 +3,7 @@ set -e |
| 3 | 3 |
|
| 4 | 4 |
# DinD: a wrapper script which allows docker to be run inside a docker container. |
| 5 | 5 |
# Original version by Jerome Petazzoni <jerome@dotcloud.com> |
| 6 |
-# See the blog post: http://blog.docker.io/2013/09/docker-can-now-run-within-docker/ |
|
| 6 |
+# See the blog post: http://blog.docker.com/2013/09/docker-can-now-run-within-docker/ |
|
| 7 | 7 |
# |
| 8 | 8 |
# This script should be executed inside a docker container in privilieged mode |
| 9 | 9 |
# ('docker run --privileged', introduced in docker 0.6).
|
| ... | ... |
@@ -20,7 +20,7 @@ AWS | packages (S3 bucket), dotCloud PAAS, dev-env, ci |
| 20 | 20 |
CloudFlare | cdn |
| 21 | 21 |
Digital Ocean | ci |
| 22 | 22 |
dotCloud PAAS | website, index, registry, ssl, blog |
| 23 |
-DynECT | dns (docker.io) |
|
| 23 |
+DynECT | dns (docker.com) |
|
| 24 | 24 |
GitHub | repository |
| 25 | 25 |
Linode | stackbrew |
| 26 | 26 |
Mailgun | outgoing e-mail |
| ... | ... |
@@ -36,20 +36,19 @@ and which service is handling them. |
| 36 | 36 |
|
| 37 | 37 |
URL | Service |
| 38 | 38 |
---------------------------------------------|--------------------------------- |
| 39 |
- http://blog.docker.io/ | blog |
|
| 39 |
+ http://blog.docker.com/ | blog |
|
| 40 | 40 |
*http://cdn-registry-1.docker.io/ | registry (pull) |
| 41 | 41 |
http://debug.docker.io/ | debug tool |
| 42 |
- http://docs.docker.io/ | docsproxy (proxy to readthedocs) |
|
| 42 |
+ http://docs.docker.com/ | documentation served from an S3 bucket |
|
| 43 | 43 |
http://docker-ci.dotcloud.com/ | ci |
| 44 |
- http://docker.io/ | redirect to www.docker.io (dynect) |
|
| 45 |
- http://docker.readthedocs.org/ | docs |
|
| 44 |
+ http://docker.com/ | redirect to www.docker.com (dynect) |
|
| 46 | 45 |
*http://get.docker.io/ | packages |
| 47 | 46 |
https://github.com/dotcloud/docker | repository |
| 48 |
-*https://index.docker.io/ | index |
|
| 47 |
+*https://hub.docker.com/ | Docker Hub |
|
| 49 | 48 |
http://registry-1.docker.io/ | registry (push) |
| 50 | 49 |
http://staging-docker-ci.dotcloud.com/ | ci |
| 51 | 50 |
*http://test.docker.io/ | packages |
| 52 |
-*http://www.docker.io/ | website |
|
| 51 |
+*http://www.docker.com/ | website |
|
| 53 | 52 |
http://? (internal URL, not for public use) | stackbrew |
| 54 | 53 |
|
| 55 | 54 |
*Ordered-by: lexicographic* |
| ... | ... |
@@ -8,8 +8,8 @@ if [ -n "$(git status --porcelain)" ]; then |
| 8 | 8 |
fi |
| 9 | 9 |
|
| 10 | 10 |
PACKAGE_ARCHITECTURE="$(dpkg-architecture -qDEB_HOST_ARCH)" |
| 11 |
-PACKAGE_URL="http://www.docker.io/" |
|
| 12 |
-PACKAGE_MAINTAINER="docker@dotcloud.com" |
|
| 11 |
+PACKAGE_URL="http://www.docker.com/" |
|
| 12 |
+PACKAGE_MAINTAINER="support@docker.com" |
|
| 13 | 13 |
PACKAGE_DESCRIPTION="Linux container runtime |
| 14 | 14 |
Docker complements LXC with a high-level API which operates at the process |
| 15 | 15 |
level. It runs unix processes with strong guarantees of isolation and |