@@ -27,8 +27,8 @@ to get a very basic explanation of it.
2727`Docker <https://www.docker.com/ >`_ is a popular solution for running programs in
2828an isolated and reproducible environment, especially to maintain releases for
2929software 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.
3232A single active instance of dockerized environment is called a *docker
3333container *.
3434A snapshot of a docker container filesystem is called a *docker image *.
@@ -127,17 +127,17 @@ Which image should I choose?
127127We currently provide two images: Debian12-based and nvidia-cuda-based. They
128128differ in the base image that they use, i.e. they have a different set of
129129preinstalled 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
131131machine.
132132
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,
134134you should try Debian12-based image.
135135
136136If you want to use CUDA libraries and have access to a GPU on your machine,
137137you should choose nvidia-cuda-based image and use `nvidia-docker
138138<https://github.com/NVIDIA/nvidia-docker> `_ to run your docker containers. Note
139139that 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
141141image.
142142
143143If 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,
176176i.e. it is only accessible via the hash value after the build is finished.
177177The second image is our resulting image. It contains only the built binaries
178178and 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