Commit Graph

334 Commits

Author SHA1 Message Date
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
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é 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
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
Sebastiaan van Stijn 428305eb77
Fix button styling on get-started
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2021-04-13 16:33:57 +02:00
Usha Mandya e8853feb97 Update FAQ and fix text on Linux download
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-04-13 15:12:45 +01:00
Usha Mandya 354cf62ee2 Add initial updates for Apple silicon release
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-04-12 22:41:19 +01:00
a-dpq be8e82e234
Update 02_our_app.md
A lot of exclamation points were used in this text. I've removed them where they don't seem to add any important emphasis.
2021-04-10 23:03:03 +02:00
Dan Bolser 2f8673d6d8
Update 08_using_compose.md 2021-04-07 12:52:00 +01:00
Dan Bolser 6fad2f7dc7
Update 05_persisting_data.md
Grab a ubuntu image? Sounds wrong.
2021-03-31 20:59:38 +01:00
Bunyamin Shabanov c15bac6288
Update documentation (#12362)
* Update documentation

Update documentation due to changes in https://github.com/docker/getting-started/pull/104

* fix(dockerfile): made one file content
2021-03-18 16:37:39 +00:00
Usha Mandya c54b66f2a7
Merge pull request #12307 from serpent5/patch-1
Fix a minor typo and inconsistencies
2021-03-18 16:06:42 +00:00
Victor Moraes 98f5a4e761
update 07_multi_container.md: add -u root to mysql
user login didnt work, so it's needed to specify user: root:secret.
docker exec -it <mysql-container-id> mysql -u root -p
2021-03-15 12:29:29 -03:00
Usha Mandya 9fbea0dd72 Update get started overview
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-03-05 22:14:56 +00:00
Muhammad Tehami 7ac0499560
Update getting started for Docker Dashboard (#12369)
* Update getting started for Docker Dashboard

Update getting started for Docker Dashboard to explicitly specify that it's available for Mac and Windows.

* Minor update

Co-authored-by: Usha Mandya <47779042+usha-mandya@users.noreply.github.com>
2021-03-05 14:53:29 +00:00
Usha Mandya 4bf9708018
Merge pull request #12355 from david-szabo97/patch-2
Node.js guide: Fix syntax highlighting
2021-03-05 14:31:12 +00:00
Usha Mandya db7743fed4
Merge pull request #12350 from adriancuadrado/patch-1
Fixed short and long links
2021-02-19 11:36:06 +00:00
Dávid Szabó 0e8734a4d2
Fix volume mismatch 2021-02-18 22:28:26 +01:00
Dávid Szabó 15bdb766b6
Fix syntax highlighting 2021-02-18 22:27:57 +01:00
Dávid Szabó ab9ee94657
Fix syntax highlighting 2021-02-18 22:27:33 +01:00
adriancuadrado f454b3cf70
Fixed short and long links 2021-02-18 11:51:32 +01:00
Usha Mandya 41f746fb99
Merge pull request #12311 from Franz333/patch-1
Update 04_sharing_app.md
2021-02-17 15:21:42 +00:00
Usha Mandya a5129c7c50
Minor style update 2021-02-17 15:18:02 +00:00
Artem Besedin 51866169ee
Update 07_multi_container.md
Fix markup in line 168.

Add forgotten curly brace
2021-02-16 14:54:22 +04:00
François Duroy ef04e891bf
Update 04_sharing_app.md
Changed the URL leading to Play With Docker so it's more straightforward. Had to search a bit before finding the right page.
2021-02-11 16:13:10 +00:00
Kirk Larkin f4c0e477e6
Fix a minor typo and inconsistencies 2021-02-11 13:59:58 +00:00
Usha Mandya 856c5e871e Fix broken links
Signed-off-by: Usha Mandya <usha.mandya@docker.com>
2021-02-09 12:46:39 +00:00
Usha Mandya 0148c0b0ff
Merge pull request #12230 from usha-mandya/get-started-updates
Get started docs improvements
2021-02-05 15:49:51 +00:00