I am running Docker on OS X under boot2docker 1.3.1
I created an image, oceania/python :
$ docker images REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE oceania/python 0.1 800229a896ff 16 hours ago 510.4 MB
I have another Docker file where I want to use FROM oceania/python
When I try to create this image, I get:
Sending build context to Docker daemon 31.74 MB Sending build context to Docker daemon Step 0 : FROM oceania/python Pulling repository oceania/python 2014/11/20 17:23:51 Error: image oceania/python not found
Shouldn't I browse my local images first before going online to try to pull it out?
Am I really obligated to upload it to the repository?
@jpetazzo answers here that what I am doing should work:
stack overflow
I assume the problem may be related to boot2docker
docker boot2docker
Anentropic Nov 20 '14 at 17:45 2014-11-20 17:45
source share