Skip to content

Commit 07f645f

Browse files
Apply suggestions from code review
Co-authored-by: BenjaminDannegard <[email protected]>
1 parent 7b31166 commit 07f645f

File tree

1 file changed

+8
-8
lines changed
  • content/hardware/04.pro/boards/portenta-x8/tutorials/docker-container

1 file changed

+8
-8
lines changed

content/hardware/04.pro/boards/portenta-x8/tutorials/docker-container/content.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ hardware:
1616

1717
## Overview
1818

19-
[Docker](http://docker.com) Is a platform full of applications, called containers as they are an isolated solution and don't depend on your environment.
19+
[Docker](http://docker.com) Is a platform full of applications, called containers. Containers are isolated solutions and thus they don't have to depend on your environment. Making them portable and consistent throughout development, testing and production.
2020

21-
You can download, install, use and share applications in the form of containers. The page where you can find all the available containers is hub.docker.com
21+
You can download, install, use and share applications in the form of containers. You can find all the available containers on the [hub.docker.com](hub.docker.com) page.
2222

23-
In this tutorial we will show step-by-step how to install, run and remove the [Hello-World Container](https://hub.docker.com/_/hello-world)
23+
In this tutorial we will go through the steps of how to install, run and remove the [Hello-World Container](https://hub.docker.com/_/hello-world)
2424

2525
## Goals
2626

@@ -38,14 +38,14 @@ In this tutorial we will show step-by-step how to install, run and remove the [H
3838

3939
## Using Docker
4040

41-
The Docker CLI is already built-in your Portenta X8 by default you can check the tool is installed by typing
41+
The Docker CLI comes with your Portenta X8 by default, you can check if the tool is installed by typing:
4242
```
4343
docker -v
4444
```
4545

4646
***To use this tool, first of all you will need to connect to your device, check [how to connect using adb/ssh](/tutorials/portenta-x8/out-of-the-box#controlling-portenta-x8-through-the-terminal).***
4747

48-
You can check Docker reference documentation, which cover deeply all the features of the tool at [https://docs.docker.com/](docs.docker.com).
48+
You can check the Docker reference documentation, which covers all the features of the tool in depth at [https://docs.docker.com/](docs.docker.com).
4949

5050
The following steps shows how to install, run and uninstall the "Hello World" container.
5151

@@ -72,7 +72,7 @@ docker run hello-world
7272
***To be able to see your container with `docker ps -a` you will need to run it at least once with `docker run`***
7373

7474
### Listing The Installed Packages
75-
List the installed containers introducing:
75+
List the installed containers with the following command:
7676
```
7777
docker ps -a
7878
```
@@ -81,7 +81,7 @@ docker ps -a
8181

8282
Keep in mind that you will need to get the `CONTAINER ID` to uninstall the container afterwards.
8383

84-
If you didn't run your container you can also check if its correctly installed by using
84+
If you didn't run your container you can also check if it's correctly installed by using:
8585
```
8686
docker images
8787
```
@@ -99,7 +99,7 @@ docker container rm <CONTAINER ID>
9999

100100
In this case we run `docker ps -a` and I copied the `CONTAINER_ID` which is `c44ba77b65cb`.
101101

102-
***`CONTAINER_ID` change its value every time you re-install them***
102+
***`CONTAINER_ID` changes its value every time you re-install them***
103103

104104
![Docker CLI container uninstall](assets/docker-container-rm.png)
105105

0 commit comments

Comments
 (0)