Commit Graph

58411 Commits

Author SHA1 Message Date
CrazyMax a288b444be
jekyll: add simple sitemap xsl
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-28 19:30:55 +02:00
CrazyMax 614c4a7000
jekyll: enable sitemap and local search for dev environment
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-28 19:30:46 +02:00
Sebastiaan van Stijn 328b9fc265
Merge pull request #15251 from crazy-max/fix-domain
jekyll: fix not expanded DOMAIN env
2022-07-28 18:25:47 +02:00
Allie Sadler 705dc59b28
add vm link (#15252) 2022-07-28 16:37:48 +01:00
Emmanuel Briney 3a290f0754
[DKP-133][DKP-155] Add Docker desktop 4.11 new windows installer options (#15210)
* prettier formatting

* add new installer options:
 - disable windows containers
 - windows containers backend

Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
2022-07-28 16:10:32 +01:00
Allie Sadler 4d3915ea54
4.11 doc additions (#15200)
* 4.11 doc additions

* add theme settings

* nested virtualization changes

* tweaks

* toc update and support note

* fix broken links

* user flag

* further review changes

* review changes

* update toc

* toc update

* capital fix

* review changes
2022-07-28 16:10:22 +01:00
Gavin 885c3dc039
DKP-248: Add release notes for 4.11.0 (#15212)
* Add release notes for 4.11.0

* Fixes from review

* Update desktop/release-notes.md

Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
2022-07-28 16:10:00 +01:00
CrazyMax 01a9362d76
jekyll: fix not expanded DOMAIN env
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-28 15:37:04 +02:00
Sebastiaan van Stijn 2b11a64a6a
Merge pull request #15235 from crazy-max/footer-current-year
dynamic current year in footer
2022-07-28 13:46:05 +02:00
Justin Chadwell 8dc8546bbf lint: reorder mdlrc to clarify purpose of rules 2022-07-28 11:27:10 +01:00
Justin Chadwell df061231ee lint: add validate target to Dockerfile 2022-07-28 11:27:10 +01:00
Justin Chadwell ad45d2d936 lint: tidy spaces inside spans 2022-07-28 11:27:10 +01:00
Justin Chadwell 321085b4bb lint: tidy consistent horizontal rules 2022-07-28 11:27:10 +01:00
Justin Chadwell 4ff46f1e45 lint: header spacing rules 2022-07-28 11:27:10 +01:00
Justin Chadwell 774950dc52 lint: prohibit reversed links 2022-07-28 11:27:10 +01:00
Justin Chadwell 749d27b40d lint: tidy up consistent header styles 2022-07-28 11:27:10 +01:00
Justin Chadwell fd9fe19061 lint: tidy up ordered list prefixes 2022-07-28 11:27:10 +01:00
Justin Chadwell 82c7362754 lint: fix linting to base state 2022-07-28 11:27:10 +01:00
CrazyMax 09758736bf
dynamic current year in footer
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-28 10:59:14 +02:00
Ivan Californias 5202184cc0 AG-1442: Add SCIM API docs 2022-07-27 20:49:53 -05:00
Sebastiaan van Stijn 67e63bcd87
Updates docs for s390x for latest version (#15245)
Signed-off-by: Prabhav Thali <Prabhav.Thali1@ibm.com>
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Co-authored-by: Prabhav Thali <Prabhav.Thali1@ibm.com>
2022-07-27 21:51:52 +01:00
Sebastiaan van Stijn bc80f7d4ea
Merge pull request #15243 from thaJeztah/fix_config_instructions
fix instructions for registry.json
2022-07-27 22:31:50 +02:00
Sebastiaan van Stijn 60c89b306f
fix instructions for registry.json
The previous instructions fixed situations where the directory
and file didn't exist, but had some issues remaining;

The `>>` _appends_ the content to the file; this would work if the file didn't
exist (before `touch`'ing it) but if there happened to be a file already, it
would append the content to the existing file, resulting in invalid JSON.

e.g. running it twice (which may be accidentally);

```bash
sudo echo '{"allowedOrgs":["myorg"]}' >> "/Library/Application Support/com.docker.docker/registry.json"
sudo echo '{"allowedOrgs":["myorg"]}' >> "/Library/Application Support/com.docker.docker/registry.json"
```

Would result in;

```bash
sudo cat "/Library/Application Support/com.docker.docker/registry.json"
{"allowedOrgs":["myorg"]}
{"allowedOrgs":["myorg"]}
```

(which is invalid JSON)

The `sudo echo` also had some issues; the `sudo` only applied to the `echo`, and
not to the piped output (see https://unix.stackexchange.com/questions/1416/redirecting-stdout-to-a-file-you-dont-have-write-permission-on);

```bash
$ sudo touch "/Library/Application Support/com.docker.docker/registry.json"
$ sudo echo '{"allowedOrgs":["myorg"]}' > "/Library/Application Support/com.docker.docker/registry.json"
bash: /Library/Application Support/com.docker.docker/registry.json: Permission denied
```

Instead, using `tee` to run as privileged process, similar to the approach taken
in c33d39a7ba/engine/install/debian.md (L106)

With that, the `touch` wouldn't be needed (the `mkdir` still would though);

```suggestion
$ sudo mkdir -p "/Library/Application Support/com.docker.docker"
$ echo '{"allowedOrgs":["myorg"]}' | sudo tee "/Library/Application Support/com.docker.docker/registry.json"
```

The new instructions will always overwrite the content with the new content,
replacing what's already there (that may need a small warning / note though) to
prevent the invalid JSON if someone runs the command multiple times, or if they
have to update the existing config with a new one.

Finally, some verification steps were added to verify content and permissions.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-07-27 22:22:18 +02:00
Usha Mandya 208639364a
Merge pull request #15231 from thaJeztah/dd_add_redirects
dd: add missing redirect for old content
2022-07-27 21:11:05 +01:00
jerae-duffin 29cda956f7
Merge pull request #15206 from jerae-duffin/ENGDOCS-718
Updated SSO images
2022-07-27 15:06:50 -05:00
Craig Osterhout 0073c0117b
Issue 15094 - how to access get started (#15125)
* added how to access the get-started tutorial

* remove extra space
2022-07-27 13:06:02 -07:00
Craig Osterhout 820366d4bf
In getting started part 2, added direct download link for the app zip and updated the repo link as there is no way to download from within the directory. (#15175) 2022-07-27 13:05:29 -07:00
Craig Osterhout b0dc95cd62
specified x86-64 arch, made wording more consistent, and changed codeblock to console (#15184) 2022-07-27 13:04:46 -07:00
Craig Osterhout d306f6c19d
add quotes around directory with spaces (#15215) 2022-07-27 13:03:44 -07:00
jerae-duffin c33d39a7ba
Merge pull request #15214 from jerae-duffin/ENGDOCS-766
updated format
2022-07-27 14:58:15 -05:00
Sebastiaan van Stijn c13b509700
Merge pull request #15234 from crazy-max/fix-icons
jekyll(css): fix social icons
2022-07-27 21:35:33 +02:00
Sebastiaan van Stijn 34cd7d09f5
Merge pull request #15236 from thaJeztah/go_linux_creds_redirect
Add /go/linux-credentials/ redirect
2022-07-27 21:11:53 +02:00
Sebastiaan van Stijn 4f4b1af977
Add /go/linux-credentials/ redirect
Docker Desktop for Linux currently has a link to;
https://docs.docker.com/desktop/linux/#credentials-management

which has moved, and didn't have a redirect, causing the link to break;
unfortunately we can't fix existing versions of Docker Desktop; redirects
are being added (but won't be able to redirect to the correct anchor).

This patch adds a https://docs.docker.com/go/linux-credentials/ redirect,
so that we can continue using that URL even if content moves around.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-07-27 20:45:26 +02:00
CrazyMax dbc6423592
jekyll(css): fix social icons
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-27 20:18:21 +02:00
Sebastiaan van Stijn 22c2d4f57d
dd: add missing redirect for old content
Adds redirects for content that was removed in cab9f914bf

I tried to pick the most logical location, or following existing redirects (some of them
I wasn't sure about, e.g. most of the old "landing" page URLs looked to be redirected to
"get-started", not "desktop overview").

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-07-27 19:42:25 +02:00
CrazyMax 8b1c893b14
Merge pull request #15194 from crazy-max/build-bake-section
build: add bake section
2022-07-27 19:02:35 +02:00
CrazyMax af0fad132b
build: add bake section
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-27 18:58:28 +02:00
CrazyMax f2f55d1e8e
jekyll: remove include_remote liquid tag and use frontmatter for remote include
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-27 18:45:58 +02:00
Dora Ribeiro 511c0a0f70
Changing the structure of the section (#15164) 2022-07-27 17:41:32 +01:00
Peter Hauke 5e97b7e1b8
Fix use of bullet list (#15090)
* Fix use of bullet list

Otherwise it would read like so:

To summarize, a container: Containers are isolated from each other and run their own software, binaries, and configurations.

Alternatively, to keep it as a bullet point:

To summarize, a container: 
...
is isolated from other containers and runs its own software, binaries, and configurations.

Both are correct. I can change the PR to the other option if preferred.

* Fix use of bullet list

Thanks, @craig-osterhout 
 
As requested, here's the commit for the alternative. Please reject the other commit and accept this one.
2022-07-27 09:17:59 -07:00
Dora Ribeiro fd61543103
Adding Build/x features highlights to the overview (#15201) 2022-07-27 17:57:57 +02:00
Craig Osterhout edef43be15
Merge pull request #15213 from craig-osterhout/ENGDOCS-847-multi-invite
Update wording for multi-invite web flow (ENGDOCS-847)
2022-07-27 07:35:06 -07:00
CrazyMax fba31604bd
Merge pull request #15223 from crazy-max/note-experimental
jekyll(css): add experimental note
2022-07-27 16:07:42 +02:00
CrazyMax b672b2894a
jekyll(assets): update font awesome to 6.1.2
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-27 16:03:02 +02:00
CrazyMax a4f735fec8
jekyll(css): add experimental note
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-27 16:03:01 +02:00
Allie Sadler cab9f914bf
ENGDOCS-846 (#15219)
* ENGDOCS-846

* fix broken links

* fix links

* fix broken links

* fix broken links

* fix broken links
2022-07-27 13:26:22 +01:00
CrazyMax 43fdab2019
Merge pull request #15218 from crazy-max/p-read-time
jekyll: keep paragraph of reading time and use include
2022-07-27 13:35:23 +02:00
CrazyMax 863b227043
jekyll: keep paragraph of reading time and use include
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2022-07-27 13:02:49 +02:00
Jerae Duffin 7026676441 updated format 2022-07-26 16:37:38 -05:00
craig-osterhout bc32da500b
updated delimeter behavior 2022-07-26 14:21:04 -07:00