Commit Graph

294 Commits

Author SHA1 Message Date
gtardif a6e5a279b4 Docker for win edge relnotes 18.05.0-ce-win67 (#6840)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2018-06-07 09:08:44 -07:00
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
gtardif 78932a3ae3 Docker for windows stable relnotes 17.12.0-ce-win46 (#5701)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2018-01-09 04:30:04 -08:00
gtardif 12551c364b Docker for windows edge relnotes 17.12.0-ce-win45 (#5674)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2018-01-05 10:58:04 -08:00
gtardif 67a6497108 Release notes for 17.12.0-ce-rc4-win44 (Edge) (#5596) 2017-12-21 09:30:10 -08:00
Jim Galasyn 66edf294ce
Tweak admonition for quote syntax (#5527) 2017-12-15 14:59:45 -08:00
Cheena Malhotra e16d2b5b92 Added note for Windows developers using docker commands. (#5377)
* Added note for Windows developers using docker commands.

* Moving note before numbered list.
2017-12-15 14:42:22 -08:00
gtardif 2a82f7b766 Docker for windows edge relnotes 17.12.0-ce-rc3-win43 (#5523) 2017-12-15 09:10:29 -08:00
gtardif 82c74d1b0c Release notes for 17.12.0-ce-rc2-win41 (Edge) (#5502) 2017-12-13 08:56:39 -08:00
gtardif d8f4e4c59e Release notes for 17.09.1-ce-win42 (Stable) (#5485) 2017-12-11 09:06:25 -08:00
gtardif 3ae8e15ad2 Docker for windows edge relnotes 17.11.0-ce-win40 (#5374)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-11-22 08:36:57 -08:00
gtardif bcdcdc7e80 Docker for windows edge relnotes 17.11.0-ce-rc4-win39 (#5332)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-11-17 11:12:19 -08:00
gtardif 4b695ca2be Docker for windows edge relnotes 17.11.0-ce-rc3-win38 (#5257)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-11-09 09:40:34 -08:00
gtardif 946731e31c Release notes for 17.11.0-ce-rc2-win37 (Edge) (#5196) 2017-11-02 10:34:18 -07:00
gtardif 27e9e13930 Update windows minimum build. 10586 support was deprecated in 17.06 dropped in 17.09 (#5122)
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
2017-10-26 08:09:00 -07:00
pinata-mac 88afec56d2 Docker for windows edge relnotes 17.10.0-ce-win36 (#5092)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-10-24 08:17:50 -07:00
Jonathan Sokolowski c450374aa7 Add download links to D4M/D4W releases (#5044) 2017-10-23 11:29:51 -07:00
gtardif 0654428919 Release notes for 17.09.0-ce-win33 patch (Stable) (#4821)
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
2017-10-06 07:49:09 -07:00
pinata-mac 6c5948bcad Docker for windows edge relnotes 17.09.0-ce-win34 (#4824)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-10-06 07:48:31 -07:00
pinata-mac 33dcea97d2 Release notes for 17.09.0-ce-win32 (Stable) (#4778)
* Docker for windows stable relnotes 17.09.0-ce-win32

Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>

* Fix compose case

Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
2017-10-02 08:55:04 -07:00
pinata-mac 707f159e16 Docker for windows edge relnotes 17.09.0-ce-win31 (#4755)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-09-29 13:46:44 -07:00
Andrew Schwartzmeyer 665727f90f Fix PowerShell syntax (#4714)
Assignment to a variable requires the dollar sign, e.g. `$variable = ...`
2017-09-28 17:20:16 -07:00
pinata-mac 5a6aea6064 Docker for windows edge relnotes 17.09.0-ce-rc3-win30 (#4696)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-09-22 09:50:04 -07:00
pinata-mac 23d97a4db4 Docker for windows edge relnotes 17.09.0-ce-rc2-win29 (#4663)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-09-19 10:21:13 -07:00
Victoria Bialas 1f99dfa207 Add more info re: Hyper-V driver for Docker Machine on Windows, cleanup, link topics together (#4609)
* add more links and info re: Hyper-V driver for Docker Machine on Windows

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added info on where Machine data lives

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added information about the Hyper-V Manager

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* linked between docker-machine create command and other relevant topics

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* copyedits

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* copyedits, added Examples heading to create driver

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* clarifed docker-machine create example

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-09-13 12:30:15 -07:00
gtardif 7f3ad45909 Fix wrong release date for Docker for Mac / Windows 17.06.2 (#4540)
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
2017-09-08 09:19:28 -07:00
pinata-mac 687e46f454 Docker for windows edge relnotes 17.09.0-ce-rc1-win28 (#4537)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-09-08 09:17:05 -07:00
pinata-mac 21370d18c6 Docker for windows stable relnotes 17.06.2-ce-win27 (#4525)
Signed-off-by: Jenkins-pr-release-docs <guillaume.tardif@docker.com>
2017-09-06 08:05:07 -07:00
gtardif da3055bcf8 D4mac / D4windows Release notes for 17.07.0 (#4488)
Signed-off-by: Guillaume Tardif <guillaume.tardif@docker.com>
2017-09-01 09:37:35 -07:00
Michael Friis fb0b85a692 Updates to Windows installation procedure (#4471) 2017-08-31 15:51:58 -07:00
Daniel Nephin a932d8de73 Fix some links that pointed at the wrong repo (#4371)
Signed-off-by: Daniel Nephin <dnephin@gmail.com>
2017-08-28 16:56:44 -07:00
Michael Friis 25c5a97371 use new installer for stable too (#4380) 2017-08-25 13:33:23 -07:00
Victoria Bialas 5c1e03c5ea d4mac, d4win Edge relnotes 17.07.0 rc4 win25 (#4360)
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-08-24 16:49:42 -07:00
Victoria Bialas 445ccf904f d4mac, d4win 17.06.1 stable, 17.07.0 edge release (#4048)
* d4mac, d4win 17.07.0 edge release

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* release notes d4mac, d4win 17.07.0 and previous

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* 17.06.1 stable, 17.07.0 edge relnotes for mac and win

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* updated keywords, kicking builds

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* copyedits

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-08-23 15:51:54 -07:00
Victoria Bialas dbe6e11167 Clarify Windows/Linux containers FAQs, add d4mac, d4win installs to TOC (#4283)
* add d4mac, d4win installs to TOC, clarified FAQs on Windows install

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added nosync to Mac and Windows installs

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-08-18 14:16:42 -07:00
Victoria Bialas 37983595ba d4win doesn't start automatically w/installer in elevated mode, add d… (#4204)
* d4win doesn't start automatically w/installer in elevated mode, add docs and pix

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* resized images to be smaller

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* clarified finding status bar whale for install

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* fixed image

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* fixed link

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-08-15 15:34:35 -07:00
Victoria Bialas a922be3d0f Update admonitions CSS for consistency and better writer workflow (#4019) 2017-07-31 21:49:56 -07:00
Victoria Bialas a4b4acc92c Fix links to subtopics in index.md files by include full path (#4054)
* for all links to , changed to full path

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* fixed link in Swarm Tutorial per review comments

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-07-31 18:54:08 -07:00
Michael Friis df36e90b6e copy-edits and clarify Docker for Windows purpose (#4014)
* copy-edits and clarify Docker for Windows purpose

* tweaked some links to work on GitHub as well as docs website w/direct paths to .md files

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-07-28 18:07:16 -07:00
Victoria Bialas 5e98f9caa8 added note re: NuGet on Docker for Windows PowerShell install (#3976)
* added note re: NuGet on Docker for Windows PowerShell install

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* made external NuGet link open a new browser tab/page

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* re-worded NuGet note

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-07-25 14:54:28 -07:00
Victoria Bialas d2cf85be8a Add CSS for option to create inline images (like whale menu) (#3877)
* add CSS tests for Josh

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* new class inline for images, updated docs to call class

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* removing last test paragraph

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-07-13 16:07:43 -07:00
Victoria Bialas 10e79f1102 Docker for Mac, Windows 17.06 stable, edge (#3733)
* Docker for Mac, Windows 17.06 stable, edge

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* incorporated review comments

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* changed Docker Cloud site links to open in new window

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-06-28 17:38:02 -07:00
Victoria Bialas a3bbadb7ed Add d4mac client side FAQ (#3671)
* add d4mac client side FAQ

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added link to FAQs from Getting Started

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added FAQs re: installing client certificates

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added more detail on client and server side certs

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* fixed Mac and Windows specific topics

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* fixed formatting so that content renders properly

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* incorporated review comments

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* updated Windows FAQ to clarify directories copy, remove refs to db

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* change ref from Mac to Windows on Win side

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added certificate topic to Win getting started

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* review comments, remove 'entities' clarify meaning

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-06-23 11:48:03 -07:00
Victoria Bialas 5084ca668b added release notes for 1706-ce-rc5 (#3679)
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-06-21 16:53:24 -07:00
Michael ed9687d4f6 Create troubleshoot.md (#3561)
removed double parentheses from link
2017-06-20 10:58:33 -07:00
Victoria Bialas 0643ec0cb6 Docker for Mac and Windows relnotes 17.06.0-rc4-ce (#3640)
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-06-16 12:38:21 -07:00
Victoria Bialas d1ff1576cb Machine bash completion (#3624)
* corrected command completion URLs compose, machine plus cloud updates

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added notes re: Cloud on Machine cloud topics

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* added notes and links re: legacy Machine swarm v. swarm mode

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* copyedit, used better punctuation

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-06-15 16:38:27 -07:00
Victoria Bialas fa52e73dc5 Added notes and troubleshooting topic on volume mounts from host (#3556)
* added notes and troubleshooting topic on volume mounts from host

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>

* updates to troubleshooting, FAQs and shared drives topics and notes

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-06-12 15:10:15 -07:00
Victoria Bialas f0022aa426 d4mac, d4win 17.06-rc2-ce-release notes (#3540)
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-06-08 15:42:45 -07:00
Victoria Bialas c93620d19d additional step for Kitematic uninstall (#3539)
Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-06-08 15:04:25 -07:00
vlad-ro b1e058cf38 Fix Docker for Mac reference (#3508) 2017-06-08 12:03:46 -07:00