2026-03-26
Docker Bootcamp is organized by our Department Computer Science and Engineering
What is the Use of Docker ?
It solves the problem of it only runs in my system , ensuring it runs all on devices
Any website as a image is pulled in putty or MobaXterm
Now we pulled the image of python
The following will tell the steps
docker ps
stop the running container by - docker stop container id listed
check again docker ps
pull a image - docker pull python:3.11.15-trixie
Image includes:
Python 3.11.15
Debian Trixie (latest Debian base)
Ready-to-use Python environment
Run the image - docker run -it python:3.11.15-trixie
You’ll see:


Top comments (0)