Skip to content

Commit 9b5aad5

Browse files
committed
Fix code blocks and case titles
1 parent 3a5447b commit 9b5aad5

File tree

1 file changed

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

1 file changed

+11
-11
lines changed

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ In this tutorial we will show step-by-step how to install, run and remove the [H
3939
## Using Docker
4040

4141
The Docker CLI is already built-in your Portenta X8 by default you can check the tool is installed by typing
42-
```sh
42+
```
4343
docker -v
4444
```
4545

@@ -49,31 +49,31 @@ You can check Docker reference documentation, which cover deeply all the feature
4949

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

52-
### Install a container
52+
### Install A Container
5353

5454
You will need to find your Docker container, on its Docker hub page it will show you how to install the desired container.
5555

5656
https://hub.docker.com/_/hello-world
5757

58-
```sh
58+
```
5959
docker pull hello-world
6060
```
6161

6262
![Docker CLI pulling a container](assets/docker-pull.png)
6363

64-
### Run the installed container
64+
### Run The Installed Container
6565

66-
```sh
66+
```
6767
docker run hello-world
6868
```
6969

7070
![Docker CLI running Hello World app](assets/docker-run.png)
7171

72-
***To be able to see your container with `docker ps -a` you will need to run it atleast once with `docker run`***
72+
***To be able to see your container with `docker ps -a` you will need to run it at least once with `docker run`***
7373

74-
### Listing the installed packages
74+
### Listing The Installed Packages
7575
List the installed containers introducing:
76-
```sh
76+
```
7777
docker ps -a
7878
```
7979

@@ -82,18 +82,18 @@ docker ps -a
8282
Keep in mind that you will need to get the `CONTAINER ID` to uninstall the container afterwards.
8383

8484
If you didn't run your container you can also check if its correctly installed by using
85-
```sh
85+
```
8686
docker images
8787
```
8888

8989
![Docker CLI images](assets/docker-images.png)
9090

91-
### Uninstall a container
91+
### Uninstall A Container
9292

9393
First get the Container ID from the container list.
9494

9595
Then use the remove (`rm`) command
96-
```sh
96+
```
9797
docker container rm <CONTAINER ID>
9898
```
9999

0 commit comments

Comments
 (0)