Check this blog if you want a Docker Container with Nvidia GPU Support.
1. About Image
1.1. Check Existing Images and Statistics
|
|
To list all images not being used by any container, run:
|
|
1.2. Rename an Image
|
|
1.3. Pull an Image
Search for an image in Docker Hub.
Pull the image by running:
|
|
Or download the layers to <dir-path>
by using this script:
|
|
1.4. Build an Image
Use a Dockerfile to build a new image based on an existing image.
Check this example project: jamesnulliu/deeplearning-docker-build.
The following command in ./scripts/build.sh would build image <image-name>:<image-tag>
:
|
|
Note that
.
specifiles the build context, where docker can reference (e.g.,COPY
andADD
) the containing files during the build process. You can change it to other directory path according to your needs.
You will find the new image after building by runing docker images
.
1.5. Save an Image to a tar File
To export an image to a tar file with reusable layer imformations, run the following command:
|
|
See 1.6. Load an Image to load the generated tar file to an image.
1.6. Load an Image
Suppose you have a tar file <some-name>.tar
, if the file is generated by docker save
(see 1.5. Save an Image to a tar File), load the image by running:
|
|
Or if the file is generated by docker export
(see 2.4 Export a container to a tar File), load the container to an image by running:
|
|
1.7. Remove an Image
Before removing an image, you need to:
- Stop containers using the image:
docker stop <container-id>
. - Remove containers using the image:
docker rm <container-id>
.
Then remove the image:
|
|
2. About Container
2.1. Check Existing Containers and Statistics
|
|
2.2. Create a Container
Basic Parameters:Click to expand
-it
: Interactive mode with pseudo-TTY terminal--name <container-name>
: Assign a name to the container for easier reference-p <host-port>:<container-port>
: Map host port to container port (e.g. 8888:22
)--entrypoint /bin/bash
: Override default entrypoint with bash shell<image-name>
: Name of the Docker image to use (e.g. ubuntu
, nvidia/cuda
)<image-tag>
: Version/tag of the image (e.g. latest
, 20.04
)
Additional Options:Click to expand
--shm-size <shm-size>G
: Set size of /dev/shm (shared memory) in GB (e.g. 2G
)--gpus all
: [Optional] Give container access to all GPUs (requires nvidia-docker)-v <host-path>:<container-path>
: Mount host directory into container-e KEY=VALUE
: Set environment variables--network=host
: Use host network stack; If set, -p
is not needed, and you can access host services directly with localhost
--ipc=host
: Use host IPC namespace--privileged
: Give extended privileges to container-u $(id -u):$(id -g)
: Run as current user instead of root--rm
: Automatically remove container when it exits
Example:
|
|
To exit container and return to host, run exit
, which will stop the containter; Or type Ctrl+P+Q
, which will detach from container without stopping it.
2.3. Start, Stop, Remove and Rename a Container
Start a container:
|
|
Attach to a container:
|
|
Stop a container:
|
|
Remove a container:
|
|
Rename a container:
|
|
2.4. Export a Container to a tar File
Note that docker export
only exports the container’s filesystem without layer information. It is more recommended to use docker save
to save a image to a tar file (see 1.5. Save an Image to a tar File).
|
|
See 1.6. Load an Image to load the generated tar file to an image.
3. Change Docker Root Directory to a Different Location
Check current docker root directory:
|
|
Stop docker daemon:
|
|
Edit (or create) the docker configuration file:
|
|
Add or modify the configuration:
|
|
Copy the existing docker data to target location:
|
|
Restart docker daemon:
|
|
Verify the new location:
|
|