neeraj@airbyte-prod:~$ docker run -d --name airbyt...
# ask-community-for-troubleshooting
n
neeraj@airbyte-prod:~$ docker run -d --name airbyte -p 8080:8080 airbyte/airbyte:1.7.0 Unable to find image 'airbyte/airbyte:1.7.0' locally docker: Error response from daemon: pull access denied for airbyte/airbyte, repository does not exist or may require 'docker login': denied: requested access to the resource is denied Run 'docker run --help' for more information neeraj@airbyte-prod:~$ sudo docker run -d --name airbyte -p 8080:8080 airbyte/airbyte:1.7.0 Unable to find image 'airbyte/airbyte:1.7.0' locally docker: Error response from daemon: pull access denied for airbyte/airbyte, repository does not exist or may require 'docker login': denied: requested access to the resource is denied Run 'docker run --help' for more information neeraj@airbyte-prod:~$
k
The error message you are seeing:
Copy code
Unable to find image 'airbyte/airbyte:1.7.0' locally docker: Error response from daemon: pull access denied for airbyte/airbyte, repository does not exist or may require 'docker login': denied: requested access to the resource is denied
indicates that Docker is unable to pull the image
airbyte/airbyte:1.7.0
from Docker Hub. According to the official Airbyte documentation, there is no mention of an image named
airbyte/airbyte
for running Airbyte. Instead, Airbyte is typically deployed using Docker Compose or Kubernetes, and the images used are more granular (e.g.,
airbyte/server
,
airbyte/webapp
, etc.), not a single monolithic
airbyte/airbyte
image. To deploy Airbyte, you should follow the official quickstart instructions, which involve installing Docker Desktop and then using the
abctl
tool to install Airbyte locally. The command you should use is:
Copy code
abctl local install
or, for low-resource environments:
Copy code
abctl local install --low-resource-mode
This will pull the correct set of images and set up Airbyte properly on your machine. You do not need to manually run a single
airbyte/airbyte
image, as such an image does not exist in the public Airbyte repositories. If you want to see which images are available, you can use:
Copy code
abctl images manifest
This will list all the images used by Airbyte, such as
airbyte/server
,
airbyte/webapp
, etc. Attempting to run
airbyte/airbyte:1.7.0
will not work because that image is not published or supported by Airbyte's official deployment methods [Quickstart](https://docs.airbyte.com/platform/1.7/using-airbyte/getting-started/oss-quickstart#part-3-run-airbyte). If you are trying to use a custom or private registry, make sure you have authenticated with
docker login
and that the image exists in your registry. But for standard Airbyte deployments, use the official instructions and tools. If you continue to have issues, please follow the official documentation for your deployment scenario, as running Airbyte via a single Docker image is not supported [Quickstart](https://docs.airbyte.com/platform/1.7/using-airbyte/getting-started/oss-quickstart#part-3-run-airbyte).