-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update docs on Docker's registry mirrors #511
Update docs on Docker's registry mirrors #511
Conversation
LGTM |
docs/get-started.md
Outdated
|
||
``` | ||
docker --version | ||
``` | ||
|
||
If `docker` is not found, please see [here](https://docs.docker.com/install/) for more information to install docker. | ||
If `Docker` is not found, please see [here](https://docs.docker.com/install/) for more information to install Docker. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your patient review and professional suggestions, I've learned a lot. Have fixed all the backtick and expression.
docs/get-started.md
Outdated
`Docker` is a tool designed to make it easier to create, deploy, and run applications by using containers. | ||
Containers allow a developer to package up an application with all of the parts it needs, | ||
such as libraries and other dependencies, and ship it all out as one package. | ||
By doing so, the developer can rest assured that the application will run on any other `Linux` machine regardless of any customized settings that machine might have that could differ from the machine used for writing and testing the code. | ||
|
||
First of all, you should make sure that `docker` has been installed on your machine. Open a terminal and run the following command : | ||
First of all, you should make sure that `Docker` has been installed on your machine. Open a terminal and run the following command : |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
docs/get-started.md
Outdated
@@ -7,29 +7,41 @@ This tutorial provides a quick introduction to use `Nebula Graph`. | |||
|
|||
### Step 1 Install Nebula Graph | |||
|
|||
The easiest way to startup `nebula` is using `docker`. | |||
The easiest way to startup `Nebula` is using `Docker`. | |||
`Docker` is a tool designed to make it easier to create, deploy, and run applications by using containers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto
docs/get-started.md
Outdated
|
||
After that, using | ||
``` | ||
docker pull vesoft/nebula-graph:latest | ||
``` | ||
to get `nebula` image and `docker images` that can display images status. | ||
to get `Nebula` image and `Docker images` that can display images status. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ditto.
Besides, here the docker
is a command, so it should be in backticks and cannot be capitalized.
docs/get-started.md
Outdated
|
||
If `docker` is slow when pulling the image, configure an accelerator. | ||
If `Docker` is slow when pulling the image, configure a new mirror. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ditto.
Besides, what is slow is the very pulling action itself, but not Docker.
Jenkins, go! |
Unit testing failed. |
jenkins go |
Unit testing passed. |
Unit testing passed. |
* add docker accelerator detail * Fix expressions and monospace * fix backticks and expression
* Set expression depth limit by flag. * Format. Co-authored-by: Yichen Wang <18348405+Aiee@users.noreply.github.com> Co-authored-by: shylock <33566796+Shylock-Hg@users.noreply.github.com> Co-authored-by: Yichen Wang <18348405+Aiee@users.noreply.github.com>
Add 'config docker accelerator detail' in get-started