Github-Container.registery.md

Translated by ChatGTP

GitHub 容器註冊表

您的 GitHub 專案名稱

https://github.com/davetestingaccount/test-for-ci

  • 建置映像檔
    • docker build -t local_image_name/test-for-ci:v0.1 .
  • 打標籤
    • docker tag local_image_name/test-for-ci:v0.1 ghcr.io/davetestingaccount/test-for-ci:v0.2
  • 登入
    • docker login ghcr.io -u davetestingaccount
    • 如無法登入,請嘗試使用 sudo
  • 推送至 GitHub
    • docker push ghcr.io/<GITHUB_USERNAME><REPO_NAME>:<TAG>
    • docker push ghcr.io/davetestingaccount/test-for-ci:v0.2
  • 檢查上傳結果
    • 在瀏覽器中輸入 ghcr.io/davetestingaccount/test-for-ci