Commit Graph

55154 Commits

Author SHA1 Message Date
Sebastiaan van Stijn e1d27921c3
engine/examples: fix up some markdown
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-26 18:44:42 +01:00
Usha Mandya cb4a1293a7
Merge pull request #11620 from thaJeztah/old_engines
Remove references to obsolete engine versions
2020-10-26 14:49:51 +00:00
Sebastiaan van Stijn 2ce808edc0
Remove references to obsolete engine versions
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-26 15:45:07 +01:00
Usha Mandya 9318adf078
Merge pull request #11631 from usha-mandya/hub-4431
Update collaborator limits
2020-10-26 14:43:34 +00:00
Usha Mandya 9426fd09e7
Merge pull request #11630 from thaJeztah/linkable_other_distros
engine: add platform headings to TOC
2020-10-26 14:43:06 +00:00
Usha Mandya 7b2788159e Update collaborator limits
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2020-10-26 14:38:35 +00:00
Sebastiaan van Stijn b952763986
engine: add platform headings to TOC
This allows deep-linking to specific sections. Also fixed the checks
in the support table to be left-aligned as they were supposed to be.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-26 15:05:37 +01:00
Sebastiaan van Stijn 43ce72c91a
Merge pull request #11621 from thaJeztah/go_buildkit
Add go/buildkit redirect
2020-10-26 13:40:12 +01:00
Usha Mandya 19b7ed116e
Merge pull request #10842 from thaJeztah/more_classic_redirects
more redirects for classic swarm
2020-10-26 10:44:29 +00:00
Rahul De c11ad3cd06
[#10166] Add clojure client 2020-10-25 09:33:09 +01:00
Sebastiaan van Stijn 7491d10964
Add go/buildkit redirect
This URL will be used in the docker cli to direct users to
instructions on enabling buildkit.

With this PR, https://docs.docker.com/go/buildkit/ will redirect
to https://docs.docker.com/develop/develop-images/build_enhancements/#to-enable-buildkit-builds

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-24 01:52:10 +02:00
Sebastiaan van Stijn 40ff4f9c13
_data: remove unused advisories
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 16:18:49 +02:00
Sebastiaan van Stijn 9cb06108e2
compose: remove references to legacy swarm
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 16:18:31 +02:00
Sebastiaan van Stijn 0e3d0c36f1
more redirects for classic swarm
- The index pages were not in the redirect (they were not in the TOC,
  but were published before, so could be indexed).
- Added "redirect_from" pages that were in the pages that were removed.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 16:15:24 +02:00
Usha Mandya 2d6c104076
Merge pull request #11618 from thaJeztah/stub_search
Disable search auto-complete in dev environment, update README and CONTRIBUTING
2020-10-23 14:32:31 +01:00
Nicolas De loof db9598346c
Volume usage (#11608)
* Volume usage

Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>

* Style and copy edit updates

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-10-23 14:23:02 +01:00
Sebastiaan van Stijn 332ce64398
Disable search auto-complete in development environment
As we don't generate a metadata.json, auto-complete is non-functional,
so disabling the script for previews.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 15:22:55 +02:00
Sebastiaan van Stijn b1bd273751
Update README to cleanup build instructions
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 15:21:28 +02:00
Sebastiaan van Stijn cd492d159b
CONTRIBUTING: remove mention of "v-next" branches
We currently don't use these, so removing them for now

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 14:46:43 +02:00
Sebastiaan van Stijn c57d28689c
CONTRIBUTING: remove mention of "not-edited-here" file
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 14:45:51 +02:00
Usha Mandya ac0849516d
Merge pull request #11614 from thaJeztah/fix_landing_whoops
_layouts/landing.html: fix "<head>" that got lost in transition
2020-10-23 13:12:04 +01:00
Sebastiaan van Stijn 24d79e61d6
_layouts/landing.html: fix "<head>" that got lost in transition
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 14:03:30 +02:00
Usha Mandya 73f9a68110
Merge pull request #11613 from thaJeztah/faster_builds
Optimize configuration and layout to reduce build-time
2020-10-23 12:56:54 +01:00
Sebastiaan van Stijn d883621145
inline "body-landing" and "body" into layout
This reduces the time to build, as Jekyll doesn't have to
render the body, then copy it into the layout:

Production before:   62 seconds
Production after:    46 seconds
Development before:  35 seconds
Development after:   33 seconds

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 13:35:18 +02:00
Sebastiaan van Stijn 87f40087d8
remove docs.html layout before renaming / move body
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 13:35:16 +02:00
Sebastiaan van Stijn 2fe7e6106a
Optimize configuration to reduce build-times
- remove wildcard match for defaults (this caused a ripple effect
  and slowed down total build time with 60 seconds?)
- skip generating metadata.json (which took 25+ seconds)
- skip generating sitemap.xml (10+ seconds)

Build-times before/after:

Production before:  132 seconds
Production after:    62 seconds
Development before: 121 seconds
Development after:   35 seconds

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 13:35:14 +02:00
Sebastiaan van Stijn 9b79a27ab4
Dockerfile: output Jekyll profile information
Also skip updating sitemap.xml for the development environment.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 13:35:12 +02:00
Sebastiaan van Stijn ea7b89ea2b
inline side-menu include
It was fully static, only used in a single place, but would be processed
for each page.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-23 13:35:10 +02:00
Usha Mandya d63d70ca63
Merge pull request #11604 from thaJeztah/less_overrides
Less overrides
2020-10-23 11:02:36 +01:00
Sebastiaan van Stijn 9c5976456c
Remove img.with-border style
The border was barely visible, was only used in a single place,
and didn't add much.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:08:04 +02:00
Sebastiaan van Stijn b9395f0d68
_scss: reduce overrides to make styling easier and more consistent
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:08:02 +02:00
Sebastiaan van Stijn 2091f8ec57
engine/reference/commandline: disable read-time through config
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:08:00 +02:00
Sebastiaan van Stijn 34a8929065
Skip read-time if it's a minute or less
I don't think the read-time is adding much value on short pages. The
reader is likely able to make a better estimation how long it would
take to read.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:07:58 +02:00
Sebastiaan van Stijn 91425c3708
Small changes to reading time to prevent redraws
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:07:56 +02:00
Sebastiaan van Stijn 72baee9555
_includes/head.html: preload OpenSans font to prevent redraws
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:07:54 +02:00
Sebastiaan van Stijn 0790040ded
Remove unused "tree" metadata variable
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 17:07:51 +02:00
Usha Mandya cec5201515
Merge pull request #11600 from thaJeztah/prod_develop
Separate "development" and "production" configurations
2020-10-22 15:04:02 +01:00
Sebastiaan van Stijn 5a1ae8310f
Separate "development" and "production" configurations
This patch updates the default configuration to match a "development"
situation, and introduces build-options to produce a "production"
build.

By default (dev environment):

- Google Analytics / GTM and PollDaddy are disabled
- SASS builds non-minified stylesheets (for easier readabililty)
- Excludes "enterprise" stubs

Building a "production" build locally is still possible by overriding
the `JEKYLL_ENV` build-arg;

    JEKYLL_ENV=production docker-compose  up --build

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-22 15:41:15 +02:00
Stephen Turner 296ee4f168
Add link to relevant Microsoft documentation (#11596)
* Add link to relevant Microsoft documentation

* Minor update

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2020-10-21 18:05:49 +01:00
Usha Mandya 3ac3540f93
Merge pull request #11594 from thaJeztah/indexing_tweaks
Updates to handling of non-indexable pages
2020-10-21 15:27:44 +01:00
Sebastiaan van Stijn b4f5167074
DDE: disable indexing
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:46:56 +02:00
Sebastiaan van Stijn e3ef5c5085
machine: move overview page to /machine/
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:44:05 +02:00
Sebastiaan van Stijn ce451cba54
remove machine/index.md (to be replaced)
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:35:46 +02:00
Sebastiaan van Stijn 26926972ea
machine: handle indexing through config
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:32:17 +02:00
Sebastiaan van Stijn 126c4cf202
_samples: remove titles, keywords and description
These were not used in the generated redirect pages,
so we can remove them.

Also setting the "sitemap" metadata through the _config.yml
so that we don't have to set it in each of the stubs.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:09:33 +02:00
Sebastiaan van Stijn 735bbc54ab
_samples: redirect Docker Hub sample pages to Docker Hub
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:09:21 +02:00
Sebastiaan van Stijn 3c869fb0e3
_layouts: fix redirect layout for external URLs
This allows `redirect_to` redirects to external websites;

    curl localhost:4000/samples/library/adminer/
    <!DOCTYPE html>
    <html lang="en-US">
      <meta charset="utf-8">
      <title>Redirecting&hellip;</title>
      <link rel="canonical" href="https://hub.docker.com/_/adminer/"><meta http-equiv="refresh" content="0; url=https://hub.docker.com/_/adminer/">
      <meta name="robots" content="noindex">
      <h1>Redirecting&hellip;</h1>
      <a href="https://hub.docker.com/_/adminer/">Click here if you are not redirected.</a>
      <script>location="https://hub.docker.com/_/adminer/"</script>
    </html>

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:09:14 +02:00
Sebastiaan van Stijn 03d60f916a
Replace "hide_from_sitemap" with "sitemap: false"
The `hide_from_sitemap` metadata variable was a custom thing we implemented
to add a "noindex" meta-header to pages and to exclude a page from the
search auto-complete.

However, pages with that option set would still be included in sitemap.xml,
resulting in search engines to visit those pages (only to discover they
should not index them).

This patch replaces the custom `hide_from_sitemap` value for `sitemap: false`,
which is a metadata variable that's defined by the "jekyll-sitemap" plugin
we use to generate the sitemap.xml;

https://github.com/jekyll/jekyll-sitemap/blob/v1.4.0/README.md#exclusions

Setting this variable will now:

- add a "noindex" metadata header to the page
- exclude the page from the sitemap.xml.
- exclude the page from /js/metadata.json (used for search autocomplete)

Also fixed an issue in the metadata.json where the `notoc` metadata was
used to exclude pages, however that variable is meant to disable the
in-page TOC (right-hand side navigation with anchor links).

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-10-21 15:09:11 +02:00
Usha Mandya 1c9b279e09
Merge pull request #11519 from andylibrian/fix-cpu-period-default-value
Update config/containers/resource_constraints.md
2020-10-21 13:53:39 +01:00
Sebastiaan van Stijn 088c702b21
Merge pull request #11587 from usha-mandya/engdocs-354
Remove Docker Toolbox docs
2020-10-20 23:33:50 +02:00