Skip to content

Commit

Permalink
fix: add information for GHRC (#337)
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Ribo Labrador <elribonazo@gmail.com>
  • Loading branch information
elribonazo authored Nov 13, 2024
1 parent 80f3370 commit 01105a0
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions demos/next-sdjwt-workshop/src/steps/Step1.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,24 @@ export default {
- <strong>27017</strong> Mongo DB<br />
- <strong>50053</strong> PRISM node<br />
</p>
<p className="mt-5">You will also need to setup a GITHUB_TOKEN in your environment by creating a <a
className="text-blue-700 hover:text-blue-900 font-bold"
href="https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-container-registry" target="_blank">
Github PAT</a> token with read:packages permissions enabled.</p>

<p>After you created your PAT token you can login to ghrc.io docker registry by running this in your machine:</p>
</div>

),
{
language: 'bash',
code: `echo 'YOUR_TOKEN' | docker login ghcr.io -u YOUR_USERNAME --password-stdin`,
},
() => {
return <div className="py-2 text-gray-600 transition duration-200">
<p>Once setup you can pull docker images and setup the environments by running this command: </p>
</div>
},
{
language: 'bash',
code: `docker compose up`,
Expand Down

1 comment on commit 01105a0

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines Statements Branches Functions
Coverage: 75%
76.08% (3633/4775) 66.49% (1665/2504) 80.29% (864/1076)

Please sign in to comment.