1. Student Verification Link to heading

  1. Github Student Verification Guide:

    Guide Link

    The Student Developer Pack includes useful tools like: Github Copilot, JetBrains, Terminus.

  2. Github Copilot Verification Guide:

    Guide Link

  3. JetBrains Verification Guide:

    Note: Gmail cannot be used for verification.

  4. Terminus Verification Guide:

    Simply log in with your Github account.

2. Github Container Registry Link to heading

  1. Login Locally:

    echo "your_token_here" | docker login ghcr.io -u your_username --password-stdin  # echo token | -u Github username
    
  2. Commit Container as an Image:

    docker commit -m "commit message" -a "author" container_id image_name  # Save the container as an image
    
  3. Tag Docker Image:

    docker tag your_image_name ghcr.io/your_username/your_image_name:latest
    
  4. Push Image:

    docker push ghcr.io/your_username/your_image_name:latest
    
  5. Notes:

    Reference Link