Browse code

Link to HTTPS URLs

Link to HTTPS URLs in top-level documentation / project files.

Signed-off-by: Eric Windisch <eric@windisch.us>

Eric Windisch authored on 2015/04/12 02:18:57
Showing 5 changed files
... ...
@@ -164,7 +164,7 @@ However, there might be a way to implement that feature *on top of* Docker.
164 164
     <td>Stack Overflow</td>
165 165
     <td>
166 166
       Stack Overflow has over 7000K Docker questions listed. We regularly 
167
-      monitor <a href="http://stackoverflow.com/search?tab=newest&q=docker" target="_blank">Docker questions</a>
167
+      monitor <a href="https://stackoverflow.com/search?tab=newest&q=docker" target="_blank">Docker questions</a>
168 168
       and so do many other knowledgeable Docker users.
169 169
     </td>
170 170
   </tr>
... ...
@@ -1,7 +1,7 @@
1 1
 
2 2
                                  Apache License
3 3
                            Version 2.0, January 2004
4
-                        http://www.apache.org/licenses/
4
+                        https://www.apache.org/licenses/
5 5
 
6 6
    TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
7 7
 
... ...
@@ -182,7 +182,7 @@
182 182
    you may not use this file except in compliance with the License.
183 183
    You may obtain a copy of the License at
184 184
 
185
-       http://www.apache.org/licenses/LICENSE-2.0
185
+       https://www.apache.org/licenses/LICENSE-2.0
186 186
 
187 187
    Unless required by applicable law or agreed to in writing, software
188 188
    distributed under the License is distributed on an "AS IS" BASIS,
... ...
@@ -37,7 +37,7 @@ project from a great one.
37 37
 		text = """
38 38
 Docker follows the timeless, highly efficient and totally unfair system
39 39
 known as [Benevolent dictator for
40
-life](http://en.wikipedia.org/wiki/Benevolent_Dictator_for_Life), with
40
+life](https://en.wikipedia.org/wiki/Benevolent_Dictator_for_Life), with
41 41
 yours truly, Solomon Hykes, in the role of BDFL. This means that all
42 42
 decisions are made, by default, by Solomon. Since making every decision
43 43
 myself would be highly un-scalable, in practice decisions are spread
... ...
@@ -1,7 +1,7 @@
1 1
 Docker
2 2
 Copyright 2012-2015 Docker, Inc.
3 3
 
4
-This product includes software developed at Docker, Inc. (http://www.docker.com).
4
+This product includes software developed at Docker, Inc. (https://www.docker.com).
5 5
 
6 6
 This product contains software (https://github.com/kr/pty) developed
7 7
 by Keith Rarick, licensed under the MIT License.
... ...
@@ -14,6 +14,6 @@ United States and other governments.
14 14
 It is your responsibility to ensure that your use and/or transfer does not
15 15
 violate applicable laws.
16 16
 
17
-For more information, please see http://www.bis.doc.gov
17
+For more information, please see https://www.bis.doc.gov
18 18
 
19
-See also http://www.apache.org/dev/crypto.html and/or seek legal counsel.
19
+See also https://www.apache.org/dev/crypto.html and/or seek legal counsel.
... ...
@@ -13,7 +13,7 @@ databases, and backend services without depending on a particular stack
13 13
 or provider.
14 14
 
15 15
 Docker began as an open-source implementation of the deployment engine which
16
-powers [dotCloud](http://dotcloud.com), a popular Platform-as-a-Service.
16
+powers [dotCloud](https://dotcloud.com), a popular Platform-as-a-Service.
17 17
 It benefits directly from the experience accumulated over several years
18 18
 of large-scale operation and support of hundreds of thousands of
19 19
 applications and databases.
... ...
@@ -56,12 +56,12 @@ By contrast, Docker relies on a different sandboxing method known as
56 56
 *containerization*. Unlike traditional virtualization, containerization
57 57
 takes place at the kernel level. Most modern operating system kernels
58 58
 now support the primitives necessary for containerization, including
59
-Linux with [openvz](http://openvz.org),
59
+Linux with [openvz](https://openvz.org),
60 60
 [vserver](http://linux-vserver.org) and more recently
61 61
 [lxc](http://lxc.sourceforge.net), Solaris with
62
-[zones](http://docs.oracle.com/cd/E26502_01/html/E29024/preface-1.html#scrolltoc),
62
+[zones](https://docs.oracle.com/cd/E26502_01/html/E29024/preface-1.html#scrolltoc),
63 63
 and FreeBSD with
64
-[Jails](http://www.freebsd.org/doc/handbook/jails.html).
64
+[Jails](https://www.freebsd.org/doc/handbook/jails.html).
65 65
 
66 66
 Docker builds on top of these low-level primitives to offer developers a
67 67
 portable format and runtime environment that solves all four problems.
... ...
@@ -115,7 +115,7 @@ This is usually difficult for several reasons:
115 115
 Docker solves the problem of dependency hell by giving the developer a simple
116 116
 way to express *all* their application's dependencies in one place, while
117 117
 streamlining the process of assembling them. If this makes you think of
118
-[XKCD 927](http://xkcd.com/927/), don't worry. Docker doesn't
118
+[XKCD 927](https://xkcd.com/927/), don't worry. Docker doesn't
119 119
 *replace* your favorite packaging systems. It simply orchestrates
120 120
 their use in a simple and repeatable way. How does it do that? With
121 121
 layers.
... ...
@@ -147,10 +147,10 @@ Docker can be installed on your local machine as well as servers - both
147 147
 bare metal and virtualized.  It is available as a binary on most modern
148 148
 Linux systems, or as a VM on Windows, Mac and other systems.
149 149
 
150
-We also offer an [interactive tutorial](http://www.docker.com/tryit/)
150
+We also offer an [interactive tutorial](https://www.docker.com/tryit/)
151 151
 for quickly learning the basics of using Docker.
152 152
 
153
-For up-to-date install instructions, see the [Docs](http://docs.docker.com).
153
+For up-to-date install instructions, see the [Docs](https://docs.docker.com).
154 154
 
155 155
 Usage examples
156 156
 ==============
... ...
@@ -159,7 +159,7 @@ Docker can be used to run short-lived commands, long-running daemons
159 159
 (app servers, databases, etc.), interactive shell sessions, etc.
160 160
 
161 161
 You can find a [list of real-world
162
-examples](http://docs.docker.com/examples/) in the
162
+examples](https://docs.docker.com/examples/) in the
163 163
 documentation.
164 164
 
165 165
 Under the hood
... ...
@@ -172,7 +172,7 @@ Under the hood, Docker is built on the following components:
172 172
   and
173 173
   [namespacing](http://blog.dotcloud.com/under-the-hood-linux-kernels-on-dotcloud-part)
174 174
   capabilities of the Linux kernel
175
-* The [Go](http://golang.org) programming language
175
+* The [Go](https://golang.org) programming language
176 176
 * The [Docker Image Specification](https://github.com/docker/docker/blob/master/image/spec/v1.md)
177 177
 * The [Libcontainer Specification](https://github.com/docker/libcontainer/blob/master/SPEC.md)
178 178
 
... ...
@@ -218,7 +218,7 @@ United States and other governments.
218 218
 It is your responsibility to ensure that your use and/or transfer does not
219 219
 violate applicable laws.
220 220
 
221
-For more information, please see http://www.bis.doc.gov
221
+For more information, please see https://www.bis.doc.gov
222 222
 
223 223
 
224 224
 Licensing