Amazon Elastic Beanstalk requires a plaintext key from Docker in order to access private images on Docker Hub. According to the instructions on AEB, you simply need to run docker login to generate these credentials in "%UserProfile%/.docker/config.json". However, this generates the following file:
{ "auths": { "https://index.docker.io/v1/": {} }, "HttpHeaders": { "User-Agent": "Docker-Client/17.12.0-ce (windows)" }, "credsStore": "wincred" } The credentials were stored in "wincred", the windows credential manager.
How do I instead force the credentials to be generated, temporarily, within the config.json file instead?