Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ to authenticate against LDAP (eg. `mozart` and `password`). You should get an
correctly.

```
curl -H "Authorization: Basic $(echo "USERNAME:PASSWORD" | base64)" -vk "https://127.0.0.1:5001/auth?service=Docker%20registry&scope=registry:catalog:*"
curl -H "Authorization: Basic $(echo -n "USERNAME:PASSWORD" | base64)" -vk "https://127.0.0.1:5001/auth?service=Docker%20registry&scope=registry:catalog:*"
```

# Manual token-based workflow to list repositories
Expand Down
2 changes: 1 addition & 1 deletion auth/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ if [ -f $CONF_PATH.custom ]; then
fi

# Start the auth server
/auth_server -v=5 -alsologtostderr=true -log_dir=/logs $CONF_PATH
/docker_auth/auth_server -v=5 -alsologtostderr=true -log_dir=/logs $CONF_PATH