Home > database >  runing docker image from another docker image
runing docker image from another docker image

Time:08-22

I am new to docker container concepts. I have a tensorflow-gpu-jupyter docker image (pulled) that I want to run as another docker image with some additional requirements to install over the original pulled image.

Is it possible to do such a thing ? Do I need to build my own image (original requirements), if so where should I start to do so ?

CodePudding user response:

Yes

You would use that as the base image i.e. the 'from' and create a new image with all your other requirements

  • Related