I got this error when trying to start a server wit...
# ask-ai
m
I got this error when trying to start a server with docker-compose on version 0.40.32 What should I do? Error response from daemon: manifest for airbyte/airbyte-api-server:0.40.32 not found: manifest unknown: manifest unknown
k
It looks like you're encountering an issue with a missing Docker image manifest for the
airbyte/airbyte-api-server:0.40.32
. This type of error typically indicates that the specified Docker image version does not exist in the repository. Here are a few steps you can take to resolve this issue: 1. Upgrade to a Newer Version: The error you're seeing suggests that the Docker image for version
0.40.32
might not be available. Upgrading to a newer version of Airbyte could resolve this issue. For example, in a similar case, upgrading to version
0.50.10
resolved a manifest not found issue ([source](https://github.com/airbytehq/airbyte/discussions/28552)). 2. Check Your Docker and Environment Files: Ensure that your Docker and environment files are correctly set up. Sometimes, issues can arise from misconfigurations in these files. 3. Remove Snap Version of Docker: If you are using Ubuntu, ensure that you are not using the snap version of Docker, as it has been known to cause issues. Instead, use the apt version of Docker. You can remove the snap version and install the apt version as follows:
Copy code
bash     sudo snap remove docker     sudo apt update     sudo apt install <http://docker.io|docker.io>
4. Pull the Latest Docker Images: Make sure you have the latest Docker images by running:
Copy code
bash     docker-compose pull
5. Check for Known Issues: Review the Airbyte GitHub issues and discussions for any known issues related to the version you are trying to use. For example, there was a known issue with version
0.50.9
that was fixed in
0.50.10
([source](https://github.com/airbytehq/airbyte/discussions/28552)). If you continue to face issues, consider opening a new issue on the [Airbyte GitHub repository](https://github.com/airbytehq/airbyte/issues) with detailed information about your environment and the steps you have taken. For more detailed troubleshooting, you can refer to the [Airbyte documentation](https://docs.airbyte.com/). If you need further assistance, feel free to ask!