You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: content/hardware/04.pro/boards/portenta-x8/tutorials/docker-container/content.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ hardware:
16
16
17
17
## Overview
18
18
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.
20
20
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.
22
22
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)
24
24
25
25
## Goals
26
26
@@ -38,14 +38,14 @@ In this tutorial we will show step-by-step how to install, run and remove the [H
38
38
39
39
## Using Docker
40
40
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:
42
42
```
43
43
docker -v
44
44
```
45
45
46
46
***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).***
47
47
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).
49
49
50
50
The following steps shows how to install, run and uninstall the "Hello World" container.
51
51
@@ -72,7 +72,7 @@ docker run hello-world
72
72
***To be able to see your container with `docker ps -a` you will need to run it at least once with `docker run`***
73
73
74
74
### Listing The Installed Packages
75
-
List the installed containers introducing:
75
+
List the installed containers with the following command:
76
76
```
77
77
docker ps -a
78
78
```
@@ -81,7 +81,7 @@ docker ps -a
81
81
82
82
Keep in mind that you will need to get the `CONTAINER ID` to uninstall the container afterwards.
83
83
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:
0 commit comments