Commit Graph

60137 Commits

Author SHA1 Message Date
Benjamin Grandfond c0f2de06f1
Make the form link open in new tab 2022-12-08 16:51:25 +01:00
Sebastiaan van Stijn 0a865b332f
get-started: add syntax directives to dockerfile examples
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-08 16:44:05 +01:00
Sebastiaan van Stijn b44b091d25
develop/scan-images: add syntax directives to dockerfile examples
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-08 16:43:41 +01:00
Sebastiaan van Stijn d887f89e56
desktop: add syntax directives to dockerfile examples
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-08 16:42:53 +01:00
Sebastiaan van Stijn 4ca3621f01
desktop/extensions-sdk: add syntax directives to dockerfile examples
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-08 16:42:11 +01:00
Sebastiaan van Stijn c121f737ef
build: add syntax directives to dockerfile examples
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-08 16:41:22 +01:00
Craig Osterhout 71f5322f46
Add syntax directive to get started Dockerfile (#16299)
Co-authored-by: Sebastiaan van Stijn <thaJeztah@users.noreply.github.com>
2022-12-08 16:39:53 +01:00
Usha Mandya 08bd9a168d
Merge pull request #16295 from thaJeztah/search_box_night_mode
night-mode: don't override search background color
2022-12-08 11:27:31 +00:00
Usha Mandya b34f6c9746
Merge pull request #16300 from carrelld/patch-1
Update index.md
2022-12-08 11:26:12 +00:00
David Karlsson b41f3a14aa
fixed cmd typo (#16303) 2022-12-08 11:09:04 +01:00
Usha Mandya 44346755a1
Merge pull request #16296 from thaJeztah/compose_no_pull
compose-file: prevent pulling old docs/docstage image
2022-12-08 09:47:23 +00:00
dependabot[bot] 0647a82da6
Bump nokogiri from 1.13.9 to 1.13.10
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.13.9 to 1.13.10.
- [Release notes](https://github.com/sparklemotion/nokogiri/releases)
- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.13.9...v1.13.10)

---
updated-dependencies:
- dependency-name: nokogiri
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-08 04:00:19 +00:00
jerae-duffin 318303dc23
Merge pull request #16292 from jerae-duffin/ENGDOCS-1135
Updated SSO
2022-12-07 14:03:53 -06:00
David Carrell 19854f8550
Update index.md 2022-12-07 13:26:05 -06:00
CrazyMax d7ba9ab043
Merge pull request #16298 from dvdksn/disable-gha-in-forks
chore: prevent publish job from running on forks
2022-12-07 17:12:04 +01:00
David Karlsson 9b1d95713d chore: prevent publish job from running on forks 2022-12-07 14:33:13 +01:00
Sebastiaan van Stijn fbecf4a464
Merge pull request #16297 from thaJeztah/fix_hotjar
fix condition for hotjar include and move include
2022-12-07 13:48:00 +01:00
Sebastiaan van Stijn 829be2ef9d
move hotjar include to analytics
Moving it together with similar includes.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-07 13:10:12 +01:00
Sebastiaan van Stijn 7e7ab4e898
fix condition for hotjar include
The condition checked if the hotjar-id wasn't empty, but did not
check if it was "set". Because of that, the script would still be
included, producing a JavaScript error.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-07 12:53:37 +01:00
Sebastiaan van Stijn 4f6a42110e
compose-file: prevent pulling old docs/docstage image
Before this, docker compose would always first pull the `docs/docstage`
image from docker hub, then build the local docs:

Before this:

```
docker compose up
[+] Running 1/12
 ⠿ docs Pulled                                                          11.1s
   ⠧ 706c320525cd Download complete                                      8.7s
   ⠴ 4f98bba63633 Download complete                                      7.5s
   ⠇ 4f4fb700ef54 Exists                                                 4.8s
   ⠇ a47abff02990 Download complete                                      4.8s
   ⠧ ab1af07f990a Download complete                                      4.7s
   ⠧ bd5777bb8f79 Download complete                                      4.7s
   ⠧ 8b79b42c3524 Download complete                                      4.7s
   ⠧ d4b8ebd00804 Download complete                                      4.7s
   ⠧ f1398ae18173 Download complete                                      4.7s
   ⠧ 9981e73032c8 Download complete                                      4.7s
   ⠧ e5f90f35b4bc Download complete                                      4.7s
[+] Building 69.1s (15/20)
 => [internal] load .dockerignore                                        0.0s
 => => transferring context: 196B                                        0.0s
 => [internal] load build definition from Dockerfile                     0.0s
 => => transferring dockerfile: 3.85kB                                   0.0s
 => resolve image config for docker.io/docker/dockerfile:1               2.2s
 ...
```

With this patch, the `docs pulled` step is skipped, and we start building
immediately:

```
docker compose up
[+] Building 6.7s (11/20)
 => [internal] load .dockerignore                                       0.0s
 => => transferring context: 196B                                       0.0s
 => [internal] load build definition from Dockerfile                    0.0s
...
```

Perhaps compose does this as it was to help with caching when building
with the legacy builder, but BuildKit does not use local images for
caching, so we don't need to do so (I'm planning to open a ticket in
compose to discuss this).

As we're using this compose-file to build the docs (not to view some
older version), let's disable pulling, so that we're always building.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-07 12:45:17 +01:00
Sebastiaan van Stijn ff3f89e712
night-mode: don't override search background color
The color of the top-navigation for "light" and "night" mode is the
same, so we don't need to override the color (for now). The old override
used a hue that was slightly out of tone with the rest of the theme.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2022-12-07 12:32:45 +01:00
Jerae Duffin d05867c551 Updated SSO 2022-12-06 16:24:02 -06:00
Benjamin Grandfond 90ca64879c
Rework extension backend doc (#16236)
* Genericize frontend tutorial and make it clear other tech are usable and track it

* Rework backend tutorial to add tabs for other techs and incorporate the build and install commands.

* Guillaume's feedback
2022-12-06 16:11:54 +00:00
Guillaume Tardif 4c8c02fe4b
Reorganise extension part 2: publish section (#16268)
* Add doc about sharing extensions

Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>

* Re-organise extension publish section

Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>

Signed-off-by: Guillaume Tardif <guillaume.tardif@gmail.com>
2022-12-06 16:08:38 +00:00
Milas Bowman 01dc5ead30
compose: add v2.14.0 release notes (#16284)
* compose: add v2.14.0 release notes

Adapted from https://github.com/docker/compose/releases/tag/v2.14.0.

* compose: changelog style fixes

Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>

Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
2022-12-06 15:43:53 +00:00
Allie Sadler 682d4188c2
fix code colors for accessibility (#16282)
* fix code colors for accessibility

* change light pink color
2022-12-06 09:22:58 +00:00
David Karlsson 95213b6418
runtime: fixed linktitle for c8d image store page (#16283) 2022-12-05 15:34:54 +00:00
Craig Osterhout ee2464e4e2
Merge pull request #16274 from gr0ker/patch-1
Fix directory for Dockerfile in C# docker tutorial
2022-12-05 07:34:51 -08:00
David Scott 147dcfb164
Desktop: update with latest HTTP proxy info (#16269)
* Desktop: we now try to configure HTTP proxies consistently

It's not 100% yet but it's not necessary to configure every component
separately as it was before.

Signed-off-by: David Scott <dave.scott@docker.com>

* Desktop: update HTTP proxy section

In the latest 4.15 it should
- work with Proxy Auto-Configuration
- dynamically ask the developer for username and password, if the
  proxy requires auth
- support TLS 1.3 for talking to the proxy
- be controllable with settings management

Signed-off-by: David Scott <dave.scott@docker.com>

* Update desktop/settings/windows.md

* Update desktop/settings/linux.md

* Update desktop/settings/mac.md

* Update desktop/settings/mac.md

* Update desktop/settings/linux.md

* Update desktop/settings/windows.md

Signed-off-by: David Scott <dave.scott@docker.com>
Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
2022-12-05 09:46:25 +00:00
Tom d7136d0348
Clearified pass initialization flow (#16276)
to prevent confusion like the one discussed in [this issue](https://github.com/docker/desktop-linux/issues/85)
2022-12-05 08:40:10 +00:00
Craig Osterhout 4de75afb97
update/remove DD screenshots (#16270) 2022-12-05 08:38:10 +00:00
docker-tools-robot 69371d43f5
Update Compose reference API to v2.14.0 (#16271)
Signed-off-by: GitHub <noreply@github.com>

Signed-off-by: GitHub <noreply@github.com>
Co-authored-by: milas <milas@users.noreply.github.com>
2022-12-05 08:36:52 +00:00
gr0ker ae3acbed06
Fix path of Dockerfile directory
Other tutorial parts suppose that the Dockerfile is located at the same level as src folder.
2022-12-03 16:39:35 +05:00
Craig Osterhout 6e531553ca
Update docker-hub/onboard-business.md
Co-authored-by: jerae-duffin <83294991+jerae-duffin@users.noreply.github.com>
2022-12-02 09:53:51 -08:00
Craig Osterhout c23ab50a67
Update docker-hub/onboard-business.md
Co-authored-by: jerae-duffin <83294991+jerae-duffin@users.noreply.github.com>
2022-12-02 09:53:45 -08:00
David Karlsson 17aa0d8f06
build: imported manual pages and disabled fetch (#16262)
* build: imported manual pages and disabled fetch

* build: fixed relative links and added external link attrs

Signed-off-by: David Karlsson <david.karlsson@docker.com>

Signed-off-by: David Karlsson <david.karlsson@docker.com>
2022-12-02 18:47:00 +01:00
David Karlsson ddafb1aefc
Merge pull request #16266 from dvdksn/runtime-wasm-c8d-editorial
runtime: editorial improvements for c8d and wasm
2022-12-02 16:14:56 +01:00
David Karlsson c0f5c4dfc7 runtime: editorial improvements for c8d and wasm
Signed-off-by: David Karlsson <david.karlsson@docker.com>
2022-12-02 15:50:56 +01:00
Allie Sadler 9f1f5c3c78
adjustments to the mac permission requirements page (#16264) 2022-12-02 13:24:52 +00:00
David Scott c53e3b39f6
Update Desktop macOS min versions, post Ventura release (#16265)
The policy is latest + 2 previous which means Big Sur (11),
Monterey (12) and Ventura (13).

Signed-off-by: David Scott <dave.scott@docker.com>

Signed-off-by: David Scott <dave.scott@docker.com>
2022-12-02 11:22:37 +00:00
Mathieu Champlon 5fce119ceb
Adjust instructions for how to uninstall Docker Desktop on Mac from the command line (#16263)
This will be available in Docker Desktop 4.16
2022-12-02 09:56:32 +00:00
craig-osterhout 76a146cb5c
align hardened dd wording 2022-12-01 09:31:14 -08:00
Sebastiaan van Stijn 5b5b60beb3
Merge pull request #16133 from dvdksn/restructure-engine-docs
restructure engine docs
2022-12-01 17:16:56 +01:00
Anca Iordache ef228bbf7a
mac: update permission requirements for DD v.4.15 (#16247)
* update permission requirements for Mac

Signed-off-by: Anca Iordache <anca.iordache@docker.com>

* Update desktop/mac/permission-requirements.md

Co-authored-by: Mihaela Stoica <mihaela.stoica@docker.com>

* Update desktop/mac/permission-requirements.md

Co-authored-by: Mihaela Stoica <mihaela.stoica@docker.com>

* Update desktop/mac/permission-requirements.md

Co-authored-by: Mihaela Stoica <mihaela.stoica@docker.com>

* Update desktop/mac/permission-requirements.md

Co-authored-by: Mihaela Stoica <mihaela.stoica@docker.com>

Signed-off-by: Anca Iordache <anca.iordache@docker.com>
Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
Co-authored-by: Mihaela Stoica <mihaela.stoica@docker.com>
2022-12-01 15:36:19 +00:00
maxcleme 0cfb44db60
Docker Desktop 4.15.0 release notes (#16233)
* Docker Desktop 4.15.0 release notes

Signed-off-by: maxcleme <maxime.clement@docker.com>

* Apply suggestions from code review

Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
Co-authored-by: Mihaela Stoica <mihaela.stoica@docker.com>

* reviews

Signed-off-by: maxcleme <maxime.clement@docker.com>

* Update desktop/release-notes.md

Co-authored-by: Han Yu <han@sent.com>

* Update desktop/release-notes.md

Co-authored-by: Rebeca Pereira <105780081+rebecapereira-docker@users.noreply.github.com>

* reviews

Signed-off-by: maxcleme <maxime.clement@docker.com>

* update checksums/links

Signed-off-by: maxcleme <maxime.clement@docker.com>

Signed-off-by: maxcleme <maxime.clement@docker.com>
Co-authored-by: Allie Sadler <102604716+aevesdocker@users.noreply.github.com>
Co-authored-by: Mihaela Stoica <mihaela.stoica@docker.com>
Co-authored-by: Han Yu <han@sent.com>
Co-authored-by: Rebeca Pereira <105780081+rebecapereira-docker@users.noreply.github.com>
2022-12-01 15:27:02 +00:00
Allie Sadler c854f63b00
remove containerd release note repitition (#16252) 2022-12-01 15:26:52 +00:00
Allie Sadler b3d299f3ae
change screenshots to reflect new Design System (#16245) 2022-12-01 15:26:41 +00:00
Sam Thibault 4bdf6cb6e7
Update Wasm docs (#16223)
* Update Wasm docs

Signed-off-by: Sam Thibault <sam.thibault@docker.com>

* image store can be disabled actually.

Signed-off-by: Sam Thibault <sam.thibault@docker.com>

* update release notes also

Signed-off-by: Sam Thibault <sam.thibault@docker.com>

* discard release notes changes

Signed-off-by: Sam Thibault <sam.thibault@docker.com>

Signed-off-by: Sam Thibault <sam.thibault@docker.com>
2022-12-01 15:26:32 +00:00
Allie Sadler 87b5615982
DD 4.15: extensions content changes (#16187)
* DD 4.15: extensions content changes

* addition of share content
2022-12-01 15:26:23 +00:00
Allie Sadler 477d7f673b
DD 4.15: Dev Envs content (#16180)
* DD 4.15: Dev Envs content

* step fix

* last edits

* Update desktop/dev-environments/create-dev-env.md

Co-authored-by: Han Yu <han@sent.com>

* Update desktop/dev-environments/create-dev-env.md

Co-authored-by: Han Yu <han@sent.com>

* Update desktop/dev-environments/create-dev-env.md

Co-authored-by: Han Yu <han@sent.com>

* Update desktop/dev-environments/create-dev-env.md

* Update desktop/dev-environments/create-dev-env.md

Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>

Co-authored-by: Han Yu <han@sent.com>
Co-authored-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
2022-12-01 15:26:16 +00:00