mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #7987 from SvenDowideit/stop-hurting-blackrosezys-eyes
Yep, its been hurting my eyes too - and you've finally inspired me to fi...
This commit is contained in:
commit
1501adad29
3 changed files with 7 additions and 3 deletions
|
@ -208,8 +208,8 @@ When a single Dockerfile is given as `URL` or is piped through `STDIN`
|
||||||
(`docker build - < Dockerfile`), then no context is set.
|
(`docker build - < Dockerfile`), then no context is set.
|
||||||
|
|
||||||
When a Git repository is set as `URL`, then the repository is used as
|
When a Git repository is set as `URL`, then the repository is used as
|
||||||
the context. The Git repository is cloned with its submodules (`git
|
the context. The Git repository is cloned with its submodules
|
||||||
clone -recursive`). A fresh `git clone` occurs in a temporary directory
|
(`git clone -recursive`). A fresh `git clone` occurs in a temporary directory
|
||||||
on your local host, and then this is sent to the Docker daemon as the
|
on your local host, and then this is sent to the Docker daemon as the
|
||||||
context. This way, your local user credentials and VPN's etc can be
|
context. This way, your local user credentials and VPN's etc can be
|
||||||
used to access private repositories.
|
used to access private repositories.
|
||||||
|
|
2
docs/theme/mkdocs/base.html
vendored
2
docs/theme/mkdocs/base.html
vendored
|
@ -16,9 +16,9 @@
|
||||||
{% if canonical_url %}<link rel="canonical" href="{{ canonical_url }}">{% endif %}
|
{% if canonical_url %}<link rel="canonical" href="{{ canonical_url }}">{% endif %}
|
||||||
<link href="/css/bootstrap-custom.css" rel="stylesheet">
|
<link href="/css/bootstrap-custom.css" rel="stylesheet">
|
||||||
<link href="/css/main.css" rel="stylesheet">
|
<link href="/css/main.css" rel="stylesheet">
|
||||||
<link href="/css/docs.css" rel="stylesheet">
|
|
||||||
<link href="/css/prettify-1.0.css" rel="stylesheet">
|
<link href="/css/prettify-1.0.css" rel="stylesheet">
|
||||||
<link href="/tipuesearch/tipuesearch.css" rel="stylesheet">
|
<link href="/tipuesearch/tipuesearch.css" rel="stylesheet">
|
||||||
|
<link href="/css/docs.css" rel="stylesheet">
|
||||||
<link rel="shortcut icon" href="{{ site_favicon }}">
|
<link rel="shortcut icon" href="{{ site_favicon }}">
|
||||||
<title>{% if page_title != '**HIDDEN** - '+site_name %}{{ page_title }}{% else %}{{ site_name }}{% endif %}</title>
|
<title>{% if page_title != '**HIDDEN** - '+site_name %}{{ page_title }}{% else %}{{ site_name }}{% endif %}</title>
|
||||||
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||||
|
|
4
docs/theme/mkdocs/css/docs.css
vendored
4
docs/theme/mkdocs/css/docs.css
vendored
|
@ -335,3 +335,7 @@ table.table tr td img {
|
||||||
#versionnav ul ul {
|
#versionnav ul ul {
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* over-ride the prettyPrint colouring */
|
||||||
|
|
||||||
|
.str, .atv { color: #48484C; }
|
||||||
|
|
Loading…
Add table
Reference in a new issue