[+] Running 1/1 ✘ server Error manifest for airby...
# ask-ai
h
[+] Running 1/1 ✘ server Error manifest for airbyte/server:latest not found: manifest unknown: manifest unknown 50.8s Error response from daemon: manifest for airbyte/server:latest not found: manifest unknown: manifest unknown its saying this
k
Based on the information provided in the knowledge sources, it appears you're encountering an issue where Docker is unable to find or pull the Airbyte server image. This is a known issue that has been reported by other users as well. Here are some potential solutions and insights: 1. Check image availability: First, verify if the image is available on Docker Hub. You can do this by visiting the [Airbyte Docker Hub page](https://hub.docker.com/u/airbyte) and checking for the server image. 2. Restart Airbyte: Some users have reported that restarting Airbyte with the command
./run-ab-platform.sh -b
has resolved similar issues [Github Issue Comment](https://github.com/airbytehq/airbyte/issues/39424#issuecomment-1908486644). 3. Manual pull: Try pulling the image manually using the Docker command line. This can help determine if it's an Airbyte-specific issue or a general Docker problem. 4. Check Docker configuration: Ensure that your Docker daemon is properly configured and has internet access to pull images. 5. Version mismatch: Make sure you're using the correct version tag for the Airbyte server image that matches your Airbyte version. 6. Docker Hub rate limiting: If you're hitting Docker Hub's rate limits, consider authenticating with a Docker Hub account. 7. Network issues: Verify that there are no network issues preventing Docker from reaching Docker Hub. If the problem persists after trying these steps, you may want to consider using the newer
abctl
tool for deploying Airbyte, as mentioned in the [Github Issue Comment](https://github.com/airbytehq/airbyte/issues/39424#issuecomment-1909061724). The Docker Compose setup is being deprecated, and the
abctl
tool might provide a more stable deployment experience. For more detailed troubleshooting steps or if you need further assistance, you may want to consult the [Airbyte documentation](https://docs.airbyte.com/) or reach out to the Airbyte community for support.