https://prefect.io logo
Title
a

Ayah Safeen

03/14/2022, 6:42 AM
Hi all, I'm using prefect core, and when I
run prefect server start
I get the following error
Pulling postgres ... error
Pulling hasura   ... error
Pulling graphql  ... error
Pulling apollo   ... error
Pulling towel    ... error
Pulling ui       ...
a

Anna Geller

03/14/2022, 9:26 AM
There are so many reasons why pulling a Docker image can error out - it could be some network DNS issue, Internet connectivity, not enough space on the disk to pull the image, wrong image version, ... The easiest way to troubleshoot would be: • restart your machine/VM • restart your Docker Desktop/Docker client • ensure your Internet connection works stably • try to pull the image manually to see if this works:
docker pull postgres
a

Ayah Safeen

03/14/2022, 1:02 PM
Ok, I had to run it without internet connection I opened the network only on https://registry-1.docker.io/v2/ to make sure that
docker-compose pull
works as well, and that solves the problem
👍 1