Commit Graph

1339 Commits

Author SHA1 Message Date
idi-ot
58a5e517c9 fix typo: 10000 -> 1000000 (ms in 1 sec) (#5769)
* fix typo?

Not sure if that's what was intended by the original author, but there are 1000000 microseconds in one second, not 10000.

* update example command as well
2018-01-19 11:46:53 -08:00
idi-ot
cb6ed21e67 spacing + config.json -> daemon.json (#5771) 2018-01-19 11:45:33 -08:00
idi-ot
cc27281482 fix typo: remove unnecessary newline (#5772) 2018-01-19 11:44:24 -08:00
idi-ot
db747309d0 add spacing before grep command (#5780) 2018-01-19 11:39:11 -08:00
Charles Bushong
4d960712b8 Replacing emdash in sample code with dash (#5782)
(╯°□°)╯︵ ┻━┻
2018-01-19 11:38:46 -08:00
ada
2b1ab09694 Resolves https://github.com/docker/docker.github.io/issues/5785 (#5786) 2018-01-19 11:33:33 -08:00
Akim Demaille
218e1cbb23 Mac updates (#5762)
* Mac: fix name of the vm directory

Actually the directory name changed from vm to vms/0 (there has been
no release with vm, we may remove references to it).  This is for the
forthcoming 18.01 Edge release, but since it's already published we
should probably update now.

Signed-off-by: Akim Demaille <akim.demaille@docker.com>

* Toolbox: formatting changes

No user visible changes here, just making future diffs easier to read.

Signed-off-by: Akim Demaille <akim.demaille@docker.com>

* Toolbox: do not invite to remove ~/.docker

Docker for Mac uses that directory too.

Signed-off-by: Akim Demaille <akim.demaille@docker.com>
2018-01-18 09:37:00 -08:00
dragon788
d5518a9754 Fix typo in relative link to heading (#5765) 2018-01-18 09:34:19 -08:00
idi-ot
97066ff158 fix typo: container5 -> container6 (#5767) 2018-01-18 09:33:38 -08:00
idi-ot
5542754db3 fix type: umlimited -> unlimited (#5768) 2018-01-18 09:32:50 -08:00
Giancarlo Romeo
ed3c93aadb Fix typo (#5740) 2018-01-16 12:12:10 -08:00
Marco Davalos
4d2e963b4e Removed unnecessary RUN command from Dockerfile.build in multistage-build.md (#5750) 2018-01-16 09:09:38 -08:00
Ben Wells
cb3f9aced6 Wait after processes are launched to poll to see whether they have exited (#5686) 2018-01-12 13:32:18 -08:00
Logan Rakai
4c4543e467 Typo fix (#5707) 2018-01-11 09:11:27 -08:00
Logan Rakai
2dd0056d60 Correct warning text (#5700)
may still be locked -> may still be unlocked
2018-01-09 08:05:46 -08:00
Michael Friis
424e7c4c63 clean up whitespace (#5665) 2018-01-05 10:59:44 -08:00
gbarr01
7c3df66e72 Add API v1.35 dir and update references 2018-01-02 17:13:00 -08:00
gbarr01
3950e84534 Update CLI reference files and TOC 2018-01-02 17:13:00 -08:00
Akim Demaille
757c140877 Mac: the disk image has moved (#5603)
* Mac: the disk image has moved

In the forthcoming release of Docker for Mac, the disk image is in
another directory (was needed for future changes).

Signed-off-by: Akim Demaille <akim.demaille@docker.com>

* Mac: FAQ: Promote "Disk Usage" questions

One level upper.

Signed-off-by: Akim Demaille <akim.demaille@docker.com>
2018-01-02 17:13:00 -08:00
gbarr01
22852c0b21 Update seccomp note and remove ref to Fedora 22 2018-01-02 17:13:00 -08:00
gbarr01
7fcb35b57f Add Fedora 27; Update refs to fc24 2018-01-02 17:13:00 -08:00
Misty Stanley-Jones
15eb7fe379 Swarm service isolation (#5564) 2018-01-02 17:13:00 -08:00
Misty Stanley-Jones
2b68553bf4 Document quota support for VFS driver (#5560) 2018-01-02 17:13:00 -08:00
dungeonmaster18
e90fbae9e4 Added documentation for fluentd plugin sub-second-precision flag
Signed-off-by: dungeonmaster18 <umesh4257@gmail.com>
2018-01-02 17:13:00 -08:00
Thomas Matthijs
646fa53a52 Keep required [Service] like the example above it (#5648) 2018-01-02 10:08:16 -08:00
Stephen Kuenzli
8ad2680824 Document the mode and max-buffer-size log options (#5613)
* Document how and why to configure the `mode` and `max-buffer-size` log options
2017-12-27 14:08:47 -08:00
William Richard
cd296bbae1 Update journald logging driver options docs (#5572)
* Updated the options docs for journald driver

I have updated the options documentation for the journald logging driver, since I was having trouble understanding how it was supposed to be used.  I modeled it heavily after the google cloud logging driver docs, since I found those helpful in solving my own issues.
2017-12-27 13:04:04 -08:00
Renato Piccoli
d30e1955a9 Confusion between --publish and published (#5614) 2017-12-27 11:25:20 -08:00
Peter Kokot
1dba72ce24 Fix typo (#5611)
This patch fixes minor typo of the `docker-compose` command.
2017-12-26 12:40:03 -08:00
Sebastiaan van Stijn
32958e7c60 Improve Engine API documentation (#5607)
* Share redoc JavaScript between API versions

The redoc JavaScript is a big file, and there's no need
to keep a separate copy for each version of the API.

This patch removes the copy per-version and moves the script
to a central location.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

* Use central stylesheet for API reference

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

* Update ReDoc to v1.19.3

Changelog can be found at https://github.com/Rebilly/ReDoc/blob/v1.19.3/CHANGELOG.md

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

* Hide "request type" badges in menu

ReDoc 1.13 added "request type" badges in the menu
given that we didn't show these before, this patch
hides them.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

* Add .map file for ReDoc

Having a .map file allows debugging script issues
in the ReDoc JavaScript (which is minified).

It's a big file, but may be useful to have.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-12-26 12:35:10 -08:00
Misty Stanley-Jones
2b5f1a1731 Add clarification about the path argument (#5620) 2017-12-26 12:27:53 -08:00
Misty Stanley-Jones
cd1260a28d Remove misleading generic storage driver instructions (#5619) 2017-12-26 12:27:26 -08:00
Thibault Jamet
3c44bc7f74 Add multi stage build best practices (#5481)
Signed-off-by: Thibault Jamet <tjamet@users.noreply.github.com>
2017-12-20 15:00:55 -08:00
Umesh Yadav
f834679182 fix broken link (#5581)
Signed-off-by: dungeonmaster18 <umesh4257@gmail.com>
2017-12-20 13:40:49 -08:00
Mattias Appelgren
a85d664d6b Fix typo of journald env-regex option (#5552) 2017-12-19 13:09:43 -08:00
Miguel A. C
b49dbf9dbd Fix typo in how pki works in swarm (#5566) 2017-12-19 13:08:28 -08:00
Miguel A. C
354fac77a7 Add missing logentries row to supported drivers table (#5567) 2017-12-19 13:08:02 -08:00
Ameya Shenoy
3fc2a1f341 minor grammatical fixes (#5568) 2017-12-19 13:07:22 -08:00
Christopher Jones
381c23faab added ppc64le instructions for docker-ce on ubuntu (#5486)
* added ppc64le instructions for docker-ce on ubuntu

also updated the matrix

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
2017-12-18 11:47:36 -08:00
Misty Stanley-Jones
2bf0f7221f Update firewall troubleshooting hints (#5543) 2017-12-15 16:29:55 -08:00
Sebastiaan van Stijn
6cb98516da Proxy configuration is now in stable as well (#5520)
This feature was introduced in Docker 17.07, so has
been available in stable release 17.09 and up.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2017-12-15 16:12:45 -08:00
Gwendolynne Barr
7ac30bb1af Add legacy link warning (#5535) 2017-12-15 16:12:15 -08:00
Misty Stanley-Jones
76ee91f3fe Add info about group creation for ubuntu and debian (#5542) 2017-12-15 16:10:29 -08:00
Misty Stanley-Jones
4c30acfe97 Use ip instead of brctl (#5541) 2017-12-15 16:00:13 -08:00
Misty Stanley-Jones
7f36e9b049 Remove no longer accurate note about deferred deletion (#5540) 2017-12-15 15:49:45 -08:00
Jim Galasyn
3ef9318fa1 Remove PS> prompts from Windows snippets (#5538) 2017-12-15 15:49:27 -08:00
Misty Stanley-Jones
91022d9e1b Clarify what 'supported' means for D4M/D4W (#5539) 2017-12-15 15:49:08 -08:00
Michael Friis
cad354f9c7 Clarify supported versions (#5505) 2017-12-15 15:30:22 -08:00
Xinfeng Liu
6d5f0e8c4b Add overlay2 support for Docker EE 17.06.2-ee-5 on RHEL (#5240) 2017-12-15 15:26:23 -08:00
Igor Karpovich
e1f8e68792 Logentries log driver update (#5427)
Documentation updated to include new option described in moby/moby#31726 together with later changes from moby/moby#35626 
Released in 17.09
2017-12-14 15:45:19 -08:00