Commit Graph

1376 Commits

Author SHA1 Message Date
Gwendolynne Barr
3243cec451 Fix wrapping swarm states (#6438) 2018-04-12 08:12:56 -07:00
Gwendolynne Barr
542032cf21 Add swarm task state REMOVE (#6206) 2018-04-11 13:46:29 -07:00
Gionni
5bb6473a72 less is more - avoid cat to grep something. (#6383) 2018-04-06 11:07:06 -07:00
Dilip
373214ff98 Use printf instead of echo
`echo` adds a newline feed for the given input, therefore, it doesn't work.
2018-04-02 15:20:01 -07:00
Trapier Marshall
67076f0ef8 swarm services: correct typo
Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2018-04-02 15:08:24 -07:00
Gwendolynne Barr
1ad7485421 Repair postgres link (#6346) 2018-03-29 11:40:17 -07:00
Damien L-G
1d2b6f6fcd Update links to AppArmor's wiki (#6335) 2018-03-29 09:49:40 -07:00
Eric Smalling
50beb52f48 Adding 500KB content limit note (#6330)
Size limit per https://github.com/docker/swarmkit/blob/master/manager/controlapi/config.go#L18
2018-03-29 07:07:53 -07:00
gbarr01
f36f3ec156 Update engine API docs, fetch script, and matrix 2018-03-22 16:52:53 -07:00
gbarr01
cb157b3318 Update engine CLI docs, stubs, and TOC 2018-03-22 16:52:53 -07:00
Joao Fernandes
03e09ed114 Revert "Update engine CLI docs, stubs, and TOC"
This reverts commit 9e5ed3edd4.
2018-03-22 11:58:07 -07:00
Joao Fernandes
c9dcb9733c Revert "Update engine API docs, fetch script, and matrix"
This reverts commit 119bda6e17.
2018-03-22 11:58:07 -07:00
gbarr01
119bda6e17 Update engine API docs, fetch script, and matrix 2018-03-22 11:14:27 -07:00
gbarr01
9e5ed3edd4 Update engine CLI docs, stubs, and TOC 2018-03-22 11:14:27 -07:00
Akim Demaille
14b53b68c3 Jekyll: don't put {% raw %} directives in pre blocks
Replace all occurrences of

    ```foo
    {% raw %}
    bar
    {% endraw %}
    ```

(which generates spurious empty lines in the rendered pre block) with

    {% raw %}
    ```foo
    bar
    ```
    {% endraw %}

Also, fix some occurrences where the raw section is too large and
prevented interpretation of Jekyll directives.

This is the syntax used in the documentation of Jekyll itself:

https://raw.githubusercontent.com/jekyll/jekyll/master/docs/_docs/templates.md

FTR, done with two perl substitutions:

    '^([\t ]*```[^\n]*
    )([ \t]*\{% raw %\}[^\n]*
    )' '$2$1'

and

    '^([ \t]*\{% endraw %\}[^\n]*
    )([\t ]*```[^\n]*
    )' '$2$1'

and manually tweaks.  A mechanical check would be most useful.

Signed-off-by: Akim Demaille <akim.demaille@docker.com>
2018-03-13 10:28:29 -07:00
Shane O'Grady
a78f7d345f Fix typo (#6158)
maxumum -> maximum
2018-03-06 06:57:29 -08:00
John Gasper
dd75c65162 Update https.md 2018-03-02 11:01:34 -08:00
John Gasper
c1db5bd9a2 fixing a command's description
the command does not create a key, but generates a signed cert based on the CSR.
2018-03-02 11:01:34 -08:00
Jaume Casado Ruiz
c267d4c1bf Fix typo in userns-remap.md 2018-03-02 10:54:50 -08:00
Corey Floyd
d2ab708bff Update to fix typo in dotnetcore.md (#6042)
Fixed typo in step one of Build and run the Docker image
2018-02-23 15:34:37 -08:00
Drew Volz
374d240c6a Update security.md (#6037) 2018-02-20 16:00:49 -08:00
gbarr01
13be4ade89 Update engine API docs and fetch script 2018-02-08 13:54:12 -08:00
Misty Stanley-Jones
a8e84a80e1 Restructure and rewrite network content 2018-02-07 11:31:02 -08:00
Misty Stanley-Jones
a17a47dd77 Favor docker <object> <verb> format of commands (#5914)
Remove instances of:
- docker rmi
- docker images
- docker stop
- docker rm
- docker create
- docker exec
- docker attach
2018-02-05 09:33:47 -08:00
Misty Stanley-Jones
1b343beca4 Clean up information architecture (#5893)
- Move /engine/admin/ and /engine/userguide/ topics to /config/ and /develop/
- Get rid of some stub topics that are no longer needed
- Rename /engine/article-img/ to /engine/images/
- Mark ambassador linking topic as obsolete
- Flesh out multistage build topic
- Reorganize some terribly obsolete content in other files
2018-02-01 15:25:43 -08:00
Misty Stanley-Jones
ad80c3de5f Move storage docs into /storage (#5884) 2018-01-31 16:16:51 -08:00
Misty Stanley-Jones
72c6cbce38 Document an example for --with-registry-auth flag (#5882) 2018-01-31 13:55:42 -08:00
mrajphemi
288465b5fd Fix typo in user namespace docs (#5881)
There was a typo in a file name.
should be /etc/passwd not /etc/password
2018-01-31 13:03:54 -08:00
Misty Stanley-Jones
e9be468ed2 Add info about setting config options (#5879) 2018-01-31 11:23:40 -08:00
lostsquirrel
719e1f387d Update build-bridges.md (#5875)
* Update build-bridges.md

this guide not work for me in 
`Linux ubuntu  4.4.0-87-generic #110-Ubuntu SMP Tue Jul 18 12:55:35 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux`
it must create the bridge device first, is this correct?

* Correct the example

No need to use `brctl` and no need to re-create the `br0` bridge since Docker creates it automatically and the whole point of this tutorial is to use a different bridge.
2018-01-31 10:16:26 -08:00
Misty Stanley-Jones
7ca66dc7aa Doc that you need an initialized swarm for tutorial (#5871)
You need to initialize your swarm before starting a service on it.
2018-01-30 16:04:38 -08:00
whyun7892
a68b8ffdc1 Target ip in the config file needs to be changed (#5865)
* Target ip in the config file needs to be changed
2018-01-30 14:49:37 -08:00
Chris Williams
ab581979f8 Update index.md (#5840) 2018-01-29 14:22:12 -08:00
Misty Stanley-Jones
a55ddf60a9 Move /engine/installation to /install (#5651)
* Move /engine/installation to /install

* Add Docker for IBM Cloud to the matrix
2018-01-26 10:29:14 -08:00
leonblueconic
5f9fbe0c94 Update awslogs.md (#5816)
the [ and ] need to be escapped to avoid the folling docker error: 
docker: Error response from daemon: failed to initialize logging driver: awslogs could not parse multiline pattern key "[\\d{4}-(?:0[1-9]|1[0-2])-(?:0[1-9]|[1,2][0-9]|3[0,1])T(?:[0,1][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]+00:00]": error parsing regexp: invalid character class range: `}-(`.
2018-01-25 18:05:57 -08:00
Misty Stanley-Jones
a4f5e30249 Various copyedits to reduce future tense, wordiness, and use of 'please' (#5788)
* Reword lots of instances of 'will'

* Reword lots of instances of won't

* Reword lots of instances of we'll

* Eradicate you'll

* Eradicate 'be able to' type of phrases

* Eradicate 'unable to' type of phrases

* Eradicate 'has / have to' type of phrases

* Eradicate 'note that' type of phrases

* Eradicate 'in order to' type of phrases

* Redirect to official Chef and Puppet docs

* Eradicate gratuitous 'please'

* Reduce use of e.g.

* Reduce use of i.e.

* Reduce use of N.B.

* Get rid of 'sexagesimal' and correct some errors
2018-01-25 17:37:23 -08:00
ada
dd7a802a9d Clarify the DRAIN state w/ regard to containers (#5811)
* Clarify the DRAIN state w/ regard to containers

Bare containers are not state-reconciled, and are not affected by the swarm DRAIN state
2018-01-24 11:35:53 -08:00
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