A repository of docker images I created/pulled.
Some Docker images use GPUs, so nvidia-docker needs to be installed.
Please note that nvidia-docker currently only runs on Linux.
Based on the README files in each directory, create or pull the image and run the container you need.
Scripts in this directory and subdirectories are for Ubuntu.
-
Run a command in a new container
docker run [OPTIONS] IMAGE [COMMAND] [ARG...]
-
Remove container:
docker container rm [OPTIONS] CONTAINER [CONTAINER...]
or
docker rm [OPTIONS] CONTAINER [CONTAINER...]
-
Remove image:
docker image rm [OPTIONS] IMAGE [IMAGE...]
or
docker rmi [OPTIONS] IMAGE [IMAGE...]