DEV Community

Discussion on: Deploying a Phoenix 1.6 app with Docker and Elixir Releases

Collapse
 
miguelcoba profile image
Miguel Cobá

It looks like is failing to pull the alpine image.
can you try this and see if it succeeds?

$ docker pull alpine:3.14.2

you should get something like:

3.14.2: Pulling from library/alpine
Digest: sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a
Status: Image is up to date for alpine:3.14.2
docker.io/library/alpine:3.14.2
Enter fullscreen mode Exit fullscreen mode
Collapse
 
zacky1972 profile image
Susumu Yamazaki

Succeeded:

% docker pull alpine:3.14.2
3.14.2: Pulling from library/alpine
552d1f2373af: Already exists 
Digest: sha256:e1c082e3d3c45cccac829840a25941e679c25d438cc8412c2fa221cf1a824e6a
Status: Downloaded newer image for alpine:3.14.2
docker.io/library/alpine:3.14.2
Enter fullscreen mode Exit fullscreen mode
Thread Thread
 
zacky1972 profile image
Susumu Yamazaki

I did it! I mistook Dockerfile.

Thread Thread
 
miguelcoba profile image
Miguel Cobá

Great!