Skip to content

Commit

Permalink
Add dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubno committed Nov 21, 2024
1 parent c193bc1 commit df431be
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
# Templates

## Docker push authentication error
# Docker push authentication error

When the CLI tries to push a Docker image to the registry, you might encounter an authentication error. This error sometimes occurs for users when Docker doesn't send any credentials to the registry.
To resolve this issue, you can use the following steps:

### MacOS
## MacOS

1. Open Docker Desktop.
2. Go to Settings.
Expand Down Expand Up @@ -41,7 +39,7 @@ This allows Docker to send requests to local proxy, which handles the authentica
5. Click Apply & Restart.


### Linux
## Linux

1. Edit the Docker configuration file (usually `/etc/docker/daemon.json`) and add the following line, if the file doesn't exist, create it:
```json
Expand All @@ -56,7 +54,7 @@ This allows Docker to send requests to local proxy, which handles the authentica
sudo systemctl restart docker
```

### Windows
## Windows

1. Open Docker Desktop.
2. Go to Settings.
Expand Down
7 changes: 6 additions & 1 deletion apps/web/src/components/Navigation/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,12 @@ export const routes: NavGroup[] = [
items: [
{
title: 'Templates',
href: '/docs/troubleshooting/templates',
links: [
{
title: 'Build authentication error',
href: '/docs/troubleshooting/templates/build-authentication-error',
},
],
},
],
},
Expand Down

0 comments on commit df431be

Please sign in to comment.