Skip to content
Pushkar Anand edited this page Mar 19, 2020 · 1 revision

The docker images are generated for each module is automatically published on Github packages. And as Github packages require auth for even for public repositories, there are certain steps that need to be done to pull these images.

Generate Personal Access Tokens

  • Go to Personal Access Token Page and click on the Generate New Token button.

    Screenshot 2020-03-19 at 9 45 31 PM
  • Enter token name in Note field and select repo, write:packages and read:packages scope.

    Generate Personal Access Tokens
  • Save the generated token as it won't be shown again once you navigate away from the page

    Screenshot 2020-03-19 at 9 37 36 PM

Login to Docker using this token

  • Login to docker using command docker login docker.pkg.github.com
  • Enter your github handle in Username.
  • And enter your access token in Password.

    docker login

You should get a Login Succeeded message and now you are all set to pull docker images from github packages.