@@ -27,8 +27,8 @@ to get a very basic explanation of it.
27
27
`Docker <https://www.docker.com/ >`_ is a popular solution for running programs in
28
28
an isolated and reproducible environment, especially to maintain releases for
29
29
software deployed to large distributed fleets.
30
- It uses linux kernel namespaces and cgroups to provide a lightweight isolation
31
- inside currently running linux kernel.
30
+ It uses Linux kernel namespaces and cgroups to provide a lightweight isolation
31
+ inside currently running Linux kernel.
32
32
A single active instance of dockerized environment is called a *docker
33
33
container *.
34
34
A snapshot of a docker container filesystem is called a *docker image *.
@@ -127,17 +127,17 @@ Which image should I choose?
127
127
We currently provide two images: Debian12-based and nvidia-cuda-based. They
128
128
differ in the base image that they use, i.e. they have a different set of
129
129
preinstalled binaries. Debian8 is very minimal, nvidia-cuda is larger, but has
130
- preinstalled CUDA libraries and allows to access a GPU, installed on your
130
+ preinstalled CUDA libraries and allows access to a GPU, installed on your
131
131
machine.
132
132
133
- If you need a minimal linux distribution with only clang and libstdc++ included,
133
+ If you need a minimal Linux distribution with only clang and libstdc++ included,
134
134
you should try Debian12-based image.
135
135
136
136
If you want to use CUDA libraries and have access to a GPU on your machine,
137
137
you should choose nvidia-cuda-based image and use `nvidia-docker
138
138
<https://github.com/NVIDIA/nvidia-docker> `_ to run your docker containers. Note
139
139
that you don't need nvidia-docker to build the images, but you need it in order
140
- to have an access to GPU from a docker container that is running the built
140
+ to have access to a GPU from a docker container that is running the built
141
141
image.
142
142
143
143
If you have a different use-case, you could create your own image based on
@@ -176,4 +176,4 @@ The first image is only used during build and does not have a descriptive name,
176
176
i.e. it is only accessible via the hash value after the build is finished.
177
177
The second image is our resulting image. It contains only the built binaries
178
178
and not any build dependencies. It is also accessible via a descriptive name
179
- (specified by -d and -t flags).
179
+ (specified by `` -d `` and `` -t `` flags).
0 commit comments