My airbyte OSS docker deployment is not being able...
# replication-ask-ai
b
My airbyte OSS docker deployment is not being able to find a locally pulled image, resulting in the error, even though the image is available locally: 2024-05-24 204734 platform > Checking if airbyte/source-facebook-marketing:2.1.7 exists... 2024-05-24 204734 platform > airbyte/source-facebook-marketing:2.1.7 not found locally. Attempting to pull the image... 2024-05-24 204734 platform > Image does not exist. 2024-05-24 204734 platform > Unexpected error while checking connection:
k
It seems like you're encountering an issue where Airbyte is unable to find a locally pulled Docker image, even though it exists on your system. This issue has been reported by other users as well. Here are some steps and considerations that might help resolve this problem: 1. Verify Docker Configuration: Ensure that Docker is correctly configured and running. If you are using Docker Desktop with WSL2 on Windows, make sure that WSL2 integration is enabled and that there is sufficient disk space. 2. Check Docker Image: Confirm that the image
airbyte/source-facebook-marketing:2.1.7
is indeed available locally. You can do this by running:
Copy code
sh    docker images | grep airbyte/source-facebook-marketing
If the image is listed, it means it is available locally. 3. Run Docker with Admin Privileges: Sometimes, running Docker commands with administrative privileges can resolve permission-related issues. Try running Docker Desktop and the
docker-compose
commands with admin rights. 4. Reinstall Docker Desktop: If the issue persists, consider reinstalling Docker Desktop. This has worked for some users facing similar issues. You can find more details in the [Docker forums](https://forums.docker.com/t/docker-is-unable-to-find-image-locally/99504). 5. Use the Airbyte Script: As a workaround, you can use the Airbyte script to start the platform. This has been reported to work even when
docker-compose up
fails:
Copy code
sh    ./run-ab-platform.sh -b
After running this script, if you restart the server, you may need to run
docker compose down
followed by
./run-ab-platform.sh -b
to resume normal operation. 6. Check for Specific Issues: Review the logs for any specific error messages that might give more insight into what is going wrong. For example, the error message
Unexpected error while checking connection
indicates that the issue occurs during the connection check phase. For more detailed discussions and potential solutions, you can refer to the following sources: - [Github Issue #37433](https://github.com/airbytehq/airbyte/issues/37433) - [Forum Post on Airbyte Discuss](https://discuss.airbyte.io/t/1803) If none of these steps resolve the issue, you might want to open a new issue on the Airbyte GitHub repository or seek further assistance on the Airbyte community forums.