Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Containers are ubiquitous in the software industry, so I would recommend taking the time to read the official Docker documentation (https://docs.docker.com/get-started/). However, if you're in a hurry and just want to get a GPU-powered python environment up and running asap, the guide below should help you get started.


Step-by-step guide

 

1 - Making sure you have access to docker

...

Code Block
languagebash
themeMidnight
titleChange working directory and build image
collapsetrue
cd ~/docker/myproject 
docker build -t <image_name> . 

 

Note the dot ‘.’ at the end of the command; don't forget it as it tells docker where to look for a Dockerfile. <image_name> is a user-specified name used to identify the created image. By convention, since all images created on the machine is stored in one place, it is common to include your username in the image name; e.g.: olanorm/testproject

If the build command executed smoothly, your image should now be ready.  You can verify this by running:

Code Block
languagebash
themeMidnight
docker image list

 

 

 

 



3 - 






 

Info

...