Commit Graph

25 Commits

Author SHA1 Message Date
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
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
Trapier Marshall 82a7f716fc ucp hrm does not require publishing a port (#5181)
For UCP versions 2.1.2 and later HRM does not require `--publish`ing a
port.

Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>
2017-11-01 18:17:54 -07:00
Trapier Marshall 76294fb7fd ucp: indicate how to validate client bundle communication (#5178)
* ucp: indicate how to validate client bundle loaded

Recommends using `docker version` to confirm UCP client certificate
bundle has been sourced and the client is successfully able to reach UCP.

Signed-off-by: Trapier Marshall <trapier.marshall@docker.com>

* Add raw/endraw Liquid tags
2017-11-01 14:05:57 -07:00
Javier Arellano be0e410f24 Fix example (#4631)
Fix sudo command in example
2017-09-14 11:51:38 -07:00
Jim Galasyn 9f15cba3c7 Remove superfluous cd (#4551) 2017-09-07 13:50:15 -07:00
Wang Jie 8109c115ae Update cli-based-access.md (#3043) 2017-04-25 13:55:59 -07:00
Wang Jie 414eeed99a Update use-domain-names-to-access-services.md (#3045)
Repair the inconsistency between subject and pronoun.
2017-04-25 13:55:12 -07:00
Wang Jie 33eadaeece Update index.md (#3047) 2017-04-25 13:52:48 -07:00
Joao Fernandes 386958533f Remove link to netlify (#3054) 2017-04-25 13:51:23 -07:00
Steven Hanna 08c99cc625 Link to docker secret CLI and docker secret compose information (#2993)
* Link to docker secret CLI and docker secret compose information

* changes to improve description
2017-04-24 09:55:21 -07:00
Prashant d4047a2cb5 Update use-domain-names-to-access-services.md (#2943)
* Update use-domain-names-to-access-services.md

Fixed https://github.com/docker/docker.github.io/issues/2580

* Update use-domain-names-to-access-services.md
2017-04-20 15:29:49 -05:00
Joao Fernandes 5c477ca536 Revert "Add content trust docs from UCP 2.0 (#2656)"
This reverts commit cff050336f.
2017-04-11 13:34:39 -07:00
Jim Galasyn cff050336f Add content trust docs from UCP 2.0 (#2656) 2017-04-06 14:50:12 -07:00
Joao Fernandes 270d317e80 Review HRM admin guide 2017-03-17 17:36:09 -07:00
Adrian Kreher 08d355c6d1 Improve/modularize the UCP HRM docs
Resolves #1732. This separates out the use cases into three audiences:
administrators who configure UCP and HRM, users who use the web UI, and
users who use the Docker CLI or API. The CLI reference also provides a
guide to the label syntax and the full set of features.
2017-03-17 17:36:09 -07:00
Sarah Park 6ee53d1007 Update some screenshots for DDC (#1894)
* Update screenshots for /datacenter/install/aws/

* Update screenshots for datacenter/install/linux/

* Update screenshots for datacenter/ucp/2.1/guides/

* Update screenshots for datacenter/ucp/2.1/guides/admin/install/

* Update screenshots for datacenter/ucp/2.1/guides/admin/configure/scale-your-cluster/

* Fix screenshot's text in /ucp/2.1/guides/admin/install/

* Update screenshots for datacenter/ucp/2.1/guides/admin/configure/scale-your-cluster/

* Update screenshots for /datacenter/ucp/2.1/guides/admin/monitor-and-troubleshoot/

* Update screenshot for /datacenter/ucp/2.1/guides/admin/monitor-and-troubleshoot/troubleshoot-with-logs/

* Update screenshot for /datacenter/ucp/2.1/guides/user/access-ucp/

* Update screenshots for /datacenter/ucp/2.1/guides/user/services/

* Update screenshots for /datacenter/ucp/2.1/guides/user/secrets/

* Update screenshots for /datacenter/install/aws/

* Update screenshots for datacenter/install/linux/

* Update screenshots for datacenter/ucp/2.1/guides/

* Update screenshots for datacenter/ucp/2.1/guides/admin/install/

* Update screenshots for datacenter/ucp/2.1/guides/admin/configure/scale-your-cluster/

* Fix screenshot's text in /ucp/2.1/guides/admin/install/

* Update screenshots for datacenter/ucp/2.1/guides/admin/configure/scale-your-cluster/

* Update screenshots for /datacenter/ucp/2.1/guides/admin/monitor-and-troubleshoot/

* Update screenshot for /datacenter/ucp/2.1/guides/admin/monitor-and-troubleshoot/troubleshoot-with-logs/

* Update screenshot for /datacenter/ucp/2.1/guides/user/access-ucp/

* Update screenshots for /datacenter/ucp/2.1/guides/user/services/

* Update screenshots for /datacenter/ucp/2.1/guides/user/secrets/
2017-02-23 13:16:39 -08:00
Sarah Park 430bbdee81 Add config to `wordpress` service (#1897) 2017-02-21 12:53:01 -08:00
Alex Mavrogiannis dad2695eef Rewrite UCP backup/restore and improve uninstall and support guides
Signed-off-by: Alex Mavrogiannis <alex.mavrogiannis@docker.com>
2017-02-17 13:30:24 -08:00
Josh Hawn 560640af83 [datacenter/ucp] Update secrets per suggestions
closes #1743

Docker-DCO-1.1-Signed-off-by: Josh Hawn <josh.hawn@docker.com> (github: jlhawn)
2017-02-17 11:44:30 -08:00
sarahlynnpark f0ed4d860d Add links to video overviews 2017-02-13 15:52:46 -08:00
Joao Fernandes b826b36b14 Add use hostnames to acess your service 2017-02-08 21:02:32 -08:00
Joao Fernandes b7a5698641 Add deploy a service to UCP 2017-02-08 21:02:32 -08:00
Joao Fernandes 2b7412d72b Updates all DDC links 2017-02-08 21:02:32 -08:00
Joao Fernandes f40f7f29ce Review UCP information architecture 2017-02-08 21:02:32 -08:00