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/learning-paths/cross-platform/sme2/1-get-started.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -151,7 +151,7 @@ It contains:
151
151
you will use.
152
152
- A shell script called ``build-my-container.sh`` that you can use if you want to build the Docker container. This is not essential however, as ready-made images are made available for you.
153
153
- A script called ``build-all-containers.sh`` that was used to create the image for you to download to provide multi-architecture support for both x86_64 and AArch64.
154
-
- A configuration script for VSCode to be able to use the container from the IDE called ``.devcontainer/devcontainer.json``.
154
+
- A configuration script for VS Code to be able to use the container from the IDE called ``.devcontainer/devcontainer.json``.
155
155
156
156
The next step is to change directory to your checkout:
157
157
@@ -168,8 +168,8 @@ directory is ``SME2-learning-path.git``.{{% /notice %}}
168
168
Docker containers provide you with the functionality to execute commands in an isolated environment, where you have all the necessary tools that you require without having to clutter your machine. The containers runs independently, which means that they do not interfere with other containers on the same machine or server.
169
169
170
170
You can use Docker in the following ways:
171
-
- Directly from the command line. For example, when you are working from a terminal.
172
-
-In the container. Once you have used Docker to configure VSCode to run all the commands within the Docker environment, you can work from within it.
171
+
- Directly from the command line. For example, when you are working from a terminal on your local machine.
172
+
-Within a containerized environment. Configure VS Code to execute run all the commands inside a Docker container, allowing you to work seamlessly within the Docker environment.
173
173
174
174
### Working from a terminal
175
175
@@ -206,9 +206,9 @@ It automatically finds and uses ``.devcontainer/devcontainer.json``:
206
206

207
207
208
208
All your commands now take place in the container, so no need to prepend
209
-
them with a Docker invocation, as VSCode handles all this transparently for you.
209
+
them with a Docker invocation, as VS Code handles all this transparently for you.
210
210
211
211
{{% notice Note %}}
212
212
In the remainder of this learning path, the shell commands show the Docker
213
-
invocation so that those who do not use VSCode can copy the full command line, but if you do use VSCode, you should only use the ``COMMAND ARGUMENTS`` part.
213
+
invocation so that those who do not use VS Code can copy the full command line, but if you do use VS Code, you should only use the ``COMMAND ARGUMENTS`` part.
0 commit comments