so I just did a fresh install of graphcool but som...
# orm-help
a
so I just did a fresh install of graphcool but somehow I can't do
graphcool local up
because I get unauthirzed access when the script tries to pull graphcool-db (mysql:5.7) from
<https://registry-1.docker.io/v2/library/mysql/manifests/5.7>
v
unauthorized access happens because you're not properly logged in to Docker, I believe
p
i had an issue the other day where docker logon expected a docker.io username, not an email address
n
@avdeveloper did you progress here? 🙂
p
@avdeveloper Once you have logged on once successfully, Docker Tools (and I believe Docker for Mac, it’s successor) are supposed to integrate with the macOS Keychain you can check with:
Copy code
$ cat ~/.docker/config.json
{
	"auths": {
		"<https://index.docker.io/v1/>": {}
	},
	"HttpHeaders": {
		"User-Agent": "Docker-Client/18.04.0-ce (darwin)"
	},
	"credsStore": "osxkeychain"
}
a
Ah yes, it turns out I had to sign up using username instead of email address (even though I authenticated fine using email)