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>
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>
* 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>
* 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
* 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>