Commit Graph

243 Commits

Author SHA1 Message Date
Gwendolynne Barr
9138392402 Add redirect (#6755) 2018-05-24 12:25:25 -07:00
gtardif
564e9a519a Docker for win edge relnotes 18.05.0-ce-win66 (#6712) 2018-05-17 07:35:02 -07:00
Akim Demaille
25766041fa Windows: remove unused images
Signed-off-by: Akim Demaille <akim.demaille@docker.com>
2018-05-14 10:08:29 -07:00
Guillaume Tardif
735c816abe Note on host.docker.internal working only in Docker for Mac / Windows, not in production environments.
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
2018-05-11 12:01:20 -07:00
Stephen Turner
1eeb70dbff Update screenshot after diagnostics UI changed (#6552) 2018-05-09 20:14:29 -07:00
Gwendolynne Barr
1a39156c15 Repair proxy links (#6586) 2018-04-30 10:57:35 -07:00
gtardif
58e01613f7 Docker for win stable relnotes 18.03.1-ce-win65 (#6597) 2018-04-30 10:51:36 -07:00
Joao Fernandes
9867c1cba6 Fix download urls (#6559)
* Fix download urls
2018-04-27 10:21:55 -07:00
Stephen Turner
fc1010674c Reword to explain the purpose of the diagnostics ID (#6553) 2018-04-26 12:37:01 -07:00
gtardif
fe3d2b6d95 Docker for win stable relnotes 18.03.1-ce-win64 (#6551) 2018-04-26 10:47:32 -07:00
gtardif
bd1eb16707 Docker for win edge relnotes 18.05.0-ce-rc1-win63 (#6549) 2018-04-26 10:46:20 -07:00
Gwendolynne Barr
ca11ab6577 Repair D4W links (#6508) 2018-04-21 08:09:44 -07:00
Jingwen Peng
88e69c90ce Fix typo in titles (#6486) 2018-04-20 13:46:37 -07:00
Victor Algaze
33072cda69 Contribution link, hyper-v clarify, bootcamp 2018-04-17 11:24:30 -07:00
gtardif
0002941d94 Docker for win edge relnotes 18.04.0-ce-win62 (#6440) 2018-04-12 08:14:05 -07:00
HaakonHobaekConceptos
95bf032283 Update index.md (#6426) 2018-04-11 10:46:53 -07:00
docbenton
16175e23dd CPU must be SLAT-capable for Hyper-V (#6395) 2018-04-10 09:13:47 -07:00
gtardif
a8668fc7f1 Docker for win edge relnotes 18.04.0-ce-rc2-win61 (#6405) 2018-04-09 08:48:45 -07:00
Gwendolynne Barr
9eddd362bc Remove text on kube support in D4W stable channels (#6350) 2018-03-30 08:08:59 -07:00
Lorena Rangel
7a411c9863 Kubernetes on Docker for Windows is only on edge (#6349) 2018-03-30 07:44:54 -07:00
Gwendolynne Barr
cea1e7dc29 Tweak d4w (#6331) 2018-03-28 10:05:02 -07:00
Gwendolynne Barr
fede3151d5 Copyedit phase 4 (#6329) 2018-03-28 07:38:10 -07:00
Gwendolynne Barr
52e8b27401 Copyedit phase 3 (#6326) 2018-03-27 20:13:44 -07:00
Gwendolynne Barr
fd753e5b27 Copyedit phase 2 (#6324) 2018-03-27 19:41:37 -07:00
Gwendolynne Barr
978b1ac964 Copyedit phase 1 (#6296) 2018-03-26 22:14:39 -07:00
gtardif
2e6b90b5a9 Docker for win stable relnotes 18.03.0-ce-win59 (#6306) 2018-03-26 10:53:38 -07:00
gtardif
ff31edc5a6 Docker for win edge relnotes 18.03.0-ce-win58 (#6304)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2018-03-26 10:53:05 -07:00
Akim Demaille
2351c7ae44 Desktop: fix links to "Proxies" (#6290) 2018-03-23 11:13:49 -07:00
Akim Demaille
249e31d0cd Desktop: remove obsolete doc (#6269) 2018-03-23 07:01:29 -07:00
Akim Demaille
b419d141e1 Desktop: networking (#6258) 2018-03-23 05:46:43 -07:00
Gwendolynne Barr
6a0f892adc Remove toc min/max to repair right-hand nav (#6264) 2018-03-20 08:36:26 -07:00
Akim Demaille
ddc8bc6dd1 Desktop: split stable/edge release notes (#6231) 2018-03-16 11:03:24 -07:00
gtardif
e174c0fff9 Update misleading information on installing Docker for Windows desktop app (#6235) 2018-03-15 10:17:33 -07:00
gtardif
8d485b880c Docker for windows edge relnotes 18.03.0-ce-rc4-win57 (#6233) 2018-03-15 08:41:23 -07:00
Akim Demaille
c51f1baf2d Docker for Desktop updates (#6194) 2018-03-13 17:01:23 -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
gtardif
d99b2b4852 Docker for windows edge relnotes 18.03.0-ce-rc3-win56 (#6212) 2018-03-13 09:56:44 -07:00
Akim Demaille
19325ac6d1 Docker for desktop downloads (#6177) 2018-03-08 08:08:44 -08:00
gtardif
3dc86af3fc Release notes for 18.03.0-ce-rc1-win54 (Edge) (#6097) 2018-02-27 10:29:04 -08:00
Kevin Preller
30623ab7c1 Fixed a typo in index.md (#6050) 2018-02-23 09:07:33 -08:00
gtardif
87d8a409c3 Windows toolbox migration instructions (#5939) 2018-02-10 12:19:16 -08:00
gtardif
bdbe6df1de Docker for windows edge relnotes 18.02.0-ce-win52 (#5958) 2018-02-08 11:55: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
gtardif
19cfba5cc6 Docker for windows edge relnotes 18.02.0-ce-rc2-win51 (#5906)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2018-02-02 09:48:08 -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
gtardif
96ac063697 Docker for windows edge relnotes 18.02.0-ce-rc1-win50 (#5833)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2018-01-26 09:04:50 -08:00
Misty Stanley-Jones
0309ec51a8 Document Kubernetes support for Win (#5819)
* Document Kubernetes support for Win

* Address feedback
2018-01-26 09:04:26 -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
gtardif
e35418d0fd Docker for windows edge relnotes 18.01.0-ce-win48 (#5784)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2018-01-19 11:42:55 -08:00
gtardif
3a9ccd6494 Docker for windows stable relnotes 17.12.0-ce-win47 (#5732)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2018-01-12 10:48:58 -08:00