Machine Learning In Containerization (DOCKER)

Hands-on performed while doing the task:-

πŸ‘‰ Pull the Docker container image of CentOS image from DockerHub and create a new container

πŸ‘‰ Install the Python software on the top of the docker container

πŸ‘‰ In Container you need to copy/create a machine learning model which you have created in jupyter notebook

STEP 1:-

First, we have pulled the centos image from the docker hub.

STEP 2:-

Now we have launched a container (name=task) using centos image.

STEP 3:-

Used docker ps command to check that container is launched.

STEP 4:-

Now we are installing python.

STEP 5:-

Installing dependence (libraries) used in linear regression(ML)

STEP 6:-

Here is our predicted value.

Thank you.

--

--