Skip to content

Commit 12b1143

Browse files
committed
📝 Adds instructions for auth warning in the console
1 parent fea630f commit 12b1143

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

docs/troubleshooting.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,30 @@ Alternatively, as a workaround, you have several options:
5353

5454
---
5555

56+
## Auth Validation Error: "should be object"
57+
58+
In V 1.6.5 an update was made that in the future will become a breaking change. You will need to update you config to reflect this before V 2.0.0 is released. In the meantime, your previous config will continue to function normally, but you will see a validation warning. The change means that the structure of the `appConfig.auth` object is now an object, which has a `users` property.
59+
60+
You can fix this by replacing:
61+
62+
```yaml
63+
auth:
64+
- user: xxx
65+
hash: xxx
66+
```
67+
68+
with
69+
70+
```yaml
71+
appConfig:
72+
auth:
73+
users:
74+
- user: xxx
75+
hash: xxx
76+
```
77+
78+
---
79+
5680
## DockerHub `toomanyrequests`
5781

5882
This situation relates to error messages similar to one of the following, returned when pulling, updating or running the Docker container from Docker Hub.

0 commit comments

Comments
 (0)