Commit Graph

358 Commits

Author SHA1 Message Date
Sebastiaan van Stijn 20299f7614
Merge pull request #13901 from miajim/patch-1
Update 09_image_best.md
2021-12-23 15:48:23 +01:00
Miroslav Tomasik 93bd69ac03
Update 02_our_app.md 2021-12-06 15:08:18 +01:00
Mia 10e8f008a5
Update 09_image_best.md
Changed the command to login for use of `docker scan`.
2021-11-27 18:23:26 -05:00
Usha Mandya 7442848831
Merge pull request #13868 from morganstaff/patch-2
Update kube-deploy.md
2021-11-26 12:57:14 +00:00
Usha Mandya a2e00b1467
Merge pull request #13494 from MichaelSodeke/patch-1
edits made to section 'Run your app with MySQL'
2021-11-26 10:18:29 +00:00
morganstaff 45b14d6bac
Update kube-deploy.md
type: port 8080 is not mentioned in the bb.yaml, port 3000 is.
2021-11-21 13:38:32 -05:00
Usha Mandya 74514c833c Add Docker Desktop info to the overview
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-11-19 15:30:31 +00:00
tariqali021 f4ab5d173e
Update index.md (#13741)
* Update index.md

* Style updates

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2021-11-19 12:27:49 +00:00
Stefan Scherer 3ff899c68d
Fix python3 dependency
Signed-off-by: Stefan Scherer <stefan.scherer@docker.com>
2021-11-10 17:21:46 +01:00
Usha Mandya c5f38d8b3b Add the next set of CTAs
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-10-15 18:06:39 +01:00
Sebastiaan van Stijn 0371f3cb28
get-started: minor rephrasing
Reduce the use of "simply", "simple"

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-10-13 16:30:03 +02:00
Peter Dave Hello ed135fe151 Update most links to use https by default
Reference:

- #11640
- d405b17ca2

Signed-off-by: Peter Dave Hello <hsu@peterdavehello.org>
2021-10-12 15:45:57 +08:00
rolyli a0e59a68b0
Update style inconsistencies for code prompts in get-started (#13580)
* Fix style inconsistencies for powershell code in get-started

* Fix style inconsistencies for powershell code in get-started
2021-10-04 10:51:23 +01:00
Usha Mandya 2db1c23afe
Merge pull request #13566 from shyamal-jadav/patch-2
Update kube-deploy.md
2021-10-04 10:50:53 +01:00
Usha Mandya cfc7ca3f4c
Merge pull request #13442 from hrishikesh-kadam/patch-1
Update Getting Started Part 4
2021-10-04 10:46:47 +01:00
Sebastiaan van Stijn db3b2220dd
remove unused modal includes, and changed links to relative MD links
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-10-01 15:12:55 +02:00
Usha Mandya e5463a5045
Merge pull request #13522 from jasonsalas/patch-1
Fixed references to old Bulletin Board demo
2021-09-21 13:52:36 +01:00
Usha Mandya c4272145ab
Merge pull request #13527 from rolyli/master
Fix code block not being highlightable in the guide
2021-09-21 13:52:25 +01:00
Michael Šòdéké 24133a237c
edit: updated `Security scanning` section (#13546)
* edit: updated `Security scanning` section

`docker scan` fails when user is not logged in to Docker Hub. First I had to use `docker login` to login to Docker Hub. Afterwards, `docker scan` worked.

* Update 09_image_best.md

Update format, fix a typo

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2021-09-21 13:52:01 +01:00
Shyamal Jadav eaa4a41c5d
Update kube-deploy.md 2021-09-20 14:49:58 +05:30
Stefan Scherer c4373d5a5f
Download latest DD from main channel
Signed-off-by: Stefan Scherer <stefan.scherer@docker.com>
2021-09-15 11:09:58 +02:00
rolyli 5bf13c7380 Fix code block not being highlightable in the guide 2021-09-14 01:04:15 +01:00
Jason Salas 4fcb2c94f4
Fixed references to old Bulletin Board demo
The current documentation references the newer todo list built in the [Getting Started demo](https://docs.docker.com/get-started/02_our_app/) built in previous steps, but the docs listed the code for the older [BulletinBoard:1.0 image](http://www.myclass5.cn/get-started/part2/). So, this patch applies the following to run Getting Started:

- changed the name of the image to `getting-started`, and rebuild the image using `docker build -t getting-started .`
- changed the port numbers under the `ports` key in the Kubernetes YAML to *3000*
2021-09-14 05:30:21 +10:00
Usha Mandya 4e120ba5f7
Rename Product Manuals to Manuals (#13498)
* Rename Product Manuals to Manuals

Signed-off-by: Usha Mandya <usha.mandya@docker.com>

* Update _includes/breadcrumbs.html

Co-authored-by: Sebastiaan van Stijn <thaJeztah@users.noreply.github.com>

Co-authored-by: Sebastiaan van Stijn <thaJeztah@users.noreply.github.com>
2021-09-10 14:28:31 +01:00
Michael Šòdéké d0db5f0c8b
edits made to section 'Run your app with MySQL'
The created docker network `todo-app` was unable to support an authentication protocol requested by MySQL versions 8.0 and higher. I included a fix suggested by **stackoverlfow** user [Pras](https://stackoverflow.com/a/50131831/11492382).
2021-09-09 15:48:58 -07:00
Michael Šòdéké ac1df4d6a9
Updated `## Persist the todo data` section (#13434)
* Updated `## Persist the todo data` section

I provided a 3-step procedure from lines 81 to 102 on how to access the container's shell environment, since It was unclear how to access the `/etc/todos` directory. Also, nowhere, in the tutorial, was it mentioned that containers are *self-contained shell environments*. This information is crucial for beginners following along with the tutorial.

Take care.

* Second update

This update was due to a suggestion provided by @thaJeztah .
2021-09-02 18:01:34 +02:00
Hrishikesh Kadam e06da34897
Update Getting Started Part 4
Mentioning sharing images in step 1 is ambiguous.
2021-08-31 23:55:28 +05:30
Sebastiaan van Stijn 8c302969af Update download-links
Adjust text, add modal pop-up for browsers with JavaScript enabled, and show
EULA inline for browsers without JavaScript.

Added configuration options in the _config.json to set the correct URLs
once known.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-08-31 14:35:20 +00:00
Charles Forsyth a35084a7a7
Update 05_persisting_data.md
Correcting minor grammatical error.
2021-08-26 07:55:28 -07:00
Sebastiaan van Stijn b724f2c44d
fix code-highlighting in "get started"
Indentation in some bullet-lists had one space too little, causing
code-highlighting to not work.

Also fixed some other minor issues.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-08-17 22:20:21 +02:00
Sebastiaan van Stijn 1583678203
Add missing code-hints, and minor markdown edits
- Add missing code-hints (console, yaml)
- Consistently add an empty line after code-blocks
- Combine some examples where the output and the command were
  put in separate blocks. With the "console" code-hint, this
  is no longer nescessary.
- fix indentation in cloud/ecs-integration.md, which caused the
  numbered-list to be interrupted.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-08-16 12:59:23 +02:00
Sebastiaan van Stijn 346a066b68
Desktop: move "docker-for-windows" to "desktop/windows"
Unifying all content related to Docker Desktop to be withing the desktop
directory.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-08-14 13:28:15 +02:00
Sebastiaan van Stijn d0bf342e52
Desktop: move "docker-for-mac" to "desktop/mac"
Unifying all content related to Docker Desktop to be withing the desktop
directory.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-08-14 13:07:41 +02:00
Alfredo Cambera dfe4874233
Update resources.md
This course isn't receiving new participants.
2021-08-07 19:18:26 -05:00
Sebastiaan van Stijn 7b2f0e92bc
get-started: use "console" for shell examples
This allows for easier copying of the commands, without selecting the
prompt.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-08-06 17:19:23 +02:00
Nahin Khan 33576a4efb
Update orchestration.md (#13252)
* Update orchestration.md

* Minor style and copyedits

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2021-07-30 10:24:33 +01:00
jerae-duffin 51be46ad0d
Removed Play with Docker (#13182)
* removed PWD

* updated hosted labs

* removed PWD footer
2021-07-20 15:54:13 +01:00
Usha Mandya 7476ac6b8a
Clarify the statement 2021-07-13 10:57:24 +01:00
Yucai Huang 15c8eae642
Update 08_using_compose.md
In the "Run the application stack" part, I think there is a mistake in writing. That is "If you don't already, you'll see output that looks like this...". I change it to "If you have done already, you'll see output that looks like this...".
2021-07-08 10:00:53 +08:00
RobyCigar 29aa8bf692
Add missing container id on the command 2021-06-30 21:13:36 +07:00
Usha Mandya ab68d99fc5 Add Docker EULA for direct downloads
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-05-10 18:32:34 +01:00
Usha Mandya d2520aae96
Merge pull request #12600 from CholoTook/patch-1
Update 05_persisting_data.md
2021-04-30 14:14:19 +01:00
Usha Mandya 5bf7caf5cc Remove extra spaces in the yaml file
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-04-30 12:02:45 +01:00
Usha Mandya c6eb57a45d Remove duplicate docs
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-04-26 15:43:24 +01:00
Anders Eriksson f6f664f50d
Change wording to match "docker rm -f" command (#12601)
* Change wording to match "docker rm -f" command

Wording says *stop* when the corresponding command is `docker rm -f`.

* Clarify stop and remove

As the container is still running, this step stops the container and then removes it.

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2021-04-23 12:01:23 +01:00
Usha Mandya c360e63834
Merge pull request #12650 from a-dpq/patch-1
Update 02_our_app.md
2021-04-23 10:31:14 +01:00
Sebastiaan van Stijn e22984f7d4
use Dockerfile "syntax" directive in examples
BuildKit allows using alternative Dockerfile syntaxes to introduce new features
without having to update Docker itself. The general recommendation is to always
specify a "syntax" directive in a Dockerfile, so that (if needed) older versions
of Docker can download the correct syntax to build the Dockerfile.

This updates our examples to include a syntax directive, to make users more familiar
with these directives, and to illustrate best-pracitces in our documentation.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-04-20 10:19:12 +02:00
Sebastiaan van Stijn e4455a5f8f
Add / update some redirects for old URLs, and move old engine examples
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-04-19 10:38:52 +02:00
Usha Mandya 5ac3f36ed8 Update relnotes, download buttons based on review comments
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-04-14 19:12:01 +01:00
Sebastiaan van Stijn a463d3290f
use primary-btn instead of outline-btn
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-04-13 16:34:01 +02:00