1. Student Verification Link to heading
-
Github Student Verification Guide:
The Student Developer Pack includes useful tools like: Github Copilot, JetBrains, Terminus.
-
Github Copilot Verification Guide:
-
JetBrains Verification Guide:
Note: Gmail cannot be used for verification.
-
Terminus Verification Guide:
Simply log in with your Github account.
2. Github Container Registry Link to heading
-
Login Locally:
echo "your_token_here" | docker login ghcr.io -u your_username --password-stdin # echo token | -u Github username
-
Commit Container as an Image:
docker commit -m "commit message" -a "author" container_id image_name # Save the container as an image
-
Tag Docker Image:
docker tag your_image_name ghcr.io/your_username/your_image_name:latest
-
Push Image:
docker push ghcr.io/your_username/your_image_name:latest
-
Notes: