Commit Graph

112 Commits

Author SHA1 Message Date
Sebastiaan van Stijn d4ead1b120
Remove "bundle" subcommand and support for DAB files
Deploying stacks using the "Docker Application Bundle" (`.dab`) file
format was introduced as an experimental feature in Docker 1.13 /
17.03, but superseded by support for Docker Compose files in the CLI.

With no development being done on this feature, and no active use of the file
format, support for the DAB file format and the top-level `docker deploy` command
(hidden by default in 19.03), will be removed from the CLI, in favour of
`docker stack deploy` using compose files.

This patch removes documentation for the `docker-compose bundle` subcommand,
which was used to convert compose files into DAB files (and given the above,
will no longer be needed).

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-01-22 15:34:58 +01:00
Dawn W Docker ceac042836 branding changes
Signed-off-by: Dawn W Docker <dawn.wood@users.noreply.github.com>
2019-06-11 14:30:52 -07:00
Maria Bermudez ccbb5e2630 Revert "Revert "Merge branch 'master' of github.com:docker/docker.github.io""
This reverts commit 4b5fbbdbc9.
2019-03-08 10:53:00 -08:00
Maria Bermudez 3a00843b91
Merge pull request #8364 from jkarstens/master
Correct docker stack deploy option
2019-02-28 19:02:48 +00:00
Maria Bermudez f988c68914
Update deploy.md
Page edits and updating the example command with the verbose flag.
2019-02-28 10:57:40 -08:00
Paige Hargrave 4b5fbbdbc9 Revert "Merge branch 'master' of github.com:docker/docker.github.io"
This reverts commit 813f45bdd7, reversing
changes made to 2349c62566.
2019-02-28 13:11:13 -05:00
Jakob Karstens 6f9a504ef0 correct docker stack deploy option 2019-02-26 21:06:18 -08:00
Joe Abbey 3b3d8dc294
Update release-notes.md 2019-02-24 15:24:05 -05:00
Joe Abbey 2e024a1ace
Update release-notes.md 2019-02-24 15:22:31 -05:00
Joe Abbey aac6d8ed53
Update release-notes.md 2019-02-24 15:16:55 -05:00
Carl Fischer 9bd6bb0842
remove table, no longer needed 2019-02-20 12:53:30 -08:00
Carl Fischer 229ba9be13
Update D4Azure CE channels
remove edge channel which is no longer supported in Docker for Azure/AWS
2019-02-20 09:42:25 -08:00
Anne Henmi 93ddaf5340
Merge pull request #7664 from docker/editions-18.06.1-CE
Editions 18.06.1 CE released months ago...
2018-12-26 09:54:19 -07:00
Maria Bermudez 4bdcbf8ae9 Merge branch 'master' of github.com:docker/docker.github.io 2018-12-10 12:41:24 -08:00
L-Hudson f91b549911
Merge pull request #6046 from trapier/d4aws-remove-volumes-note
d4aws: stack removal does not remove buckets or volumes
2018-12-08 08:54:59 -05:00
Joe Abbey 04956e4943
Editions 18.06.1 CE released months ago...
Updating release notes to reflect
2018-11-12 11:47:34 -05:00
Jeffrey Morgan ca466a55ed Rename Docker Store and Docker Cloud - WIP 2018-10-04 19:41:32 -04:00
tfoxnc 14e01eea81 Revert "Merge pull request #7050 from docker/remove"
This reverts commit 5c7e147fac, reversing
changes made to e6ccb686b4.
2018-07-19 15:54:00 -04:00
tfoxnc 62192eb36c remove 2018-07-18 20:43:57 -04:00
Gwendolynne Barr bd68805efc
Tweak 2018-05-10 09:43:29 -07:00
Gwendolynne Barr 5317322191
Add latest aws release template (#6377) 2018-04-05 13:02:24 -07:00
French Ben 259526857d Removed email to streamline (#6352)
Signed-off-by: French Ben <frenchben@docker.com>
2018-03-30 11:50:27 -07:00
French Ben 6f4bff2c2e Docker 18.03-ce released (#6295) 2018-03-26 11:50:06 -07:00
French Ben b7d96dc998 Bump of docker to 17.12.1 (#6205) 2018-03-13 12:17:05 -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
Trapier Marshall 9fadb61349 d4aws: stack removal does not remove buckets or volumes
Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2018-02-22 09:59:24 -05:00
French Ben 5e380f624c 17.12 release notes (#5926)
* Updated release notes and FAQ around EFS

Signed-off-by: French Ben <frenchben@docker.com>

* Added note around machine restart ssh access

Signed-off-by: French Ben <frenchben@docker.com>

* Edge release added

Signed-off-by: French Ben <frenchben@docker.com>

* Disabled EFS encryption

Signed-off-by: French Ben <frenchben@docker.com>

* Added note on upgrade and EFS declaration

Signed-off-by: French Ben <frenchben@docker.com>

* Migrate notes to proper md

Signed-off-by: French Ben <frenchben@docker.com>
2018-02-08 13:52:15 -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
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
Lachlan Cooper 1fa2c0387a Correct parameter names for --publish long syntax (#5457) 2017-12-12 12:59:30 -08:00
Misty Stanley-Jones 956fe5924d
Update docs for new publish syntax (#5323) 2017-11-17 12:08:29 -08:00
Zac Kwan 29cd9a49f4 Added ImportKeyPair that is needed for classic mode 2017-11-10 10:33:23 -08:00
French Ben 0e1dcd9db9 Modify subnet is needed on top of modify vpc (#5138)
Signed-off-by: French Ben <frenchben@docker.com>
2017-10-30 09:56:42 -07:00
French Ben ddf0964196 Edge update
Signed-off-by: French Ben <frenchben@docker.com>
2017-10-27 10:37:54 -07:00
French Ben 6ad5030c14 Templates have EE in name
Signed-off-by: French Ben <frenchben@docker.com>
2017-10-27 10:37:54 -07:00
French Ben bce06ce4b5 Updated docs for 17.10 Edge release
Signed-off-by: French Ben <frenchben@docker.com>
2017-10-27 10:37:54 -07:00
Misty Stanley-Jones b426618a9e Update some missing release notes (#4943) 2017-10-14 10:11:13 -07:00
Gwendolynne Barr d4baef5154 Link aws perms doc to cloud doc on creating iam role (#4958) 2017-10-13 15:33:43 -07:00
Misty Stanley-Jones 032042651b Add info about stacks for AWS and Azure docs (#4620) 2017-09-13 14:53:52 -07:00
French Ben e750dcaa13 Add AWS faq for large clusters (#4477) 2017-09-13 11:10:55 -07:00
French Ben 00105dbdf6 Added editions containers details (#4470) 2017-08-31 14:00:20 -07:00
Ken Cochrane a3c0d066ca Add docs for new docker for aws ELB HTTPS protocol feature (#3945) 2017-08-29 15:10:56 -07:00
Victoria Bialas 99f0e0e245 Docker for AWS, uninstall, faq's, pix, copyedit (#4404)
* added faq and topic on uninstall Docker for AWS

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

* added screen snaps, corrected links

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

* formatting updates

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

* copyedits per review

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
2017-08-28 17:39:57 -07:00
Michael Friis f10b6d1b8a improve formatting (#4397) 2017-08-28 13:32:56 -07:00
French Ben 4445f27581 Cleanup editions (#4350) 2017-08-25 12:13:07 -07:00
Joao Fernandes 331983b366 Move Datacenter articles below Docker EE (#224)
* Move DDC articles in TOC

* Update TOC to make DDC part of Docker EE
2017-08-15 23:31:15 -07:00
Wang Jie 31517cbfc1 Update upgrade.md (#4159) 2017-08-11 13:19:36 -07:00
Wang Jie fd42331052 Update scaling.md (#4160) 2017-08-11 13:19:05 -07:00
Wang Jie 5b8a3c8796 Update faqs.md (#4162) 2017-08-11 13:18:33 -07:00
Wang Jie 5cd1cd0a76 Update release-notes.md (#4146) 2017-08-10 15:48:11 -07:00