-
Notifications
You must be signed in to change notification settings - Fork 261
feat(cr): add troubleshooting #4557
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 4 commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
b92ea40
feat(ctr): add troubleshooting
bene2k1 3a3f82e
feat(cr): update content
bene2k1 be07368
Update pages/container-registry/troubleshooting/troubleshooting-conta…
bene2k1 633d815
fix(cr): update wording
bene2k1 1935b9a
Apply suggestions from code review
bene2k1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
73 changes: 73 additions & 0 deletions
73
...try/troubleshooting/common-errors-when-pushing-images-to-container-registry.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,73 @@ | ||
| --- | ||
| meta: | ||
| title: Common errors when pushing images to Container Registry | ||
| description: Solutions for resolving issues when pushing images to Scaleway's Container Registry. | ||
| content: | ||
| h1: Common errors when pushing images to Container Registry | ||
| paragraph: This guide provides solutions for common issues encountered when pushing images to Scaleway's Container Registry. | ||
| tags: container-registry, troubleshooting | ||
| dates: | ||
| validation: 2025-03-05 | ||
| posted: 2025-03-05 | ||
| categories: | ||
| - container-registry | ||
| --- | ||
|
|
||
| ## Problem | ||
| You are unable to push images to Scaleway's Container Registry. | ||
|
|
||
| ### Symptoms | ||
| - The `docker push` command fails with an error message. | ||
| - Authentication or authorization errors occur. | ||
| - The image push process hangs or times out. | ||
|
|
||
| ## Possible causes | ||
| - Incorrect authentication or authorization settings. | ||
| - Misconfigured or outdated Docker client. | ||
| - Network connectivity issues or firewall restrictions. | ||
| - Exceeded Container Registry quotas or limits. | ||
|
|
||
| ## Solutions | ||
|
|
||
| ### Verify authentication and authorization | ||
| - Ensure you are logged in with a valid Scaleway account using `docker login`. | ||
| - Confirm that your account has the necessary permissions to push images. | ||
| - Verify that your Docker client is [correctly configured](/container-registry/how-to/connect-docker-cli/) for Scaleway's Container Registry. | ||
|
|
||
| ### Review error messages and logs | ||
| - Run the push command with verbose output for more details: | ||
| ```sh | ||
| docker push --debug <your-image> | ||
| ``` | ||
| - Check the Docker client logs for warnings or errors: | ||
| ```sh | ||
| docker logs <container_id> | ||
| ``` | ||
| - Verify Scaleway’s Container Registry [status](https://status.scaleway.com/) for any ongoing incidents. | ||
|
|
||
| ### Check Docker configuration and version | ||
| - Ensure your Docker client is up-to-date by running: | ||
| ```sh | ||
| docker --version | ||
| ``` | ||
| - Check for configuration errors in the Docker daemon and client. | ||
| - Review the [Docker documentation](https://docs.docker.com/) for known compatibility issues. | ||
|
|
||
| ### Investigate network connectivity issues | ||
| - Confirm that your internet connection is stable. | ||
| - Check firewall or proxy settings that may be blocking the connection. | ||
| - Try pushing the image from a different network or VPN to rule out local issues. | ||
|
|
||
| ### Verify Container Registry quotas and limits | ||
| - Ensure you have not exceeded your Scaleway Container Registry storage limits. | ||
| - Refer to Scaleway’s documentation for [quota information](/organizations-and-projects/additional-content/organization-quotas/#container-registry). | ||
|
|
||
| ## Additional troubleshooting steps | ||
| - Try pushing a small test image to verify general functionality: | ||
| ```sh | ||
| docker pull alpine && docker tag alpine <your-registry>/test-image && docker push <your-registry>/test-image | ||
| ``` | ||
| - Review Docker’s official [troubleshooting guides](https://docs.docker.com/tags/troubleshooting/) for further insights. | ||
| - If the issue persists, [contact our support team](https://console.scaleway.com/support) with error logs and diagnostic details. | ||
|
|
||
|
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.