-
Notifications
You must be signed in to change notification settings - Fork 0
Conversation
Dockerfile
Outdated
# copy the keys you've created on your machine | ||
COPY keys/id_ed25519 /home/nobody/.ssh/ | ||
# add know host gitea server | ||
RUN ssh-keyscan -H gitea-server.fly.dev > /home/nobody/.ssh/known_hosts |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@SimonLab the RUN ssh-keyscan -H gitea-server.fly.dev > /home/nobody/.ssh/known_hosts
is already present in the Dockerfile
... #4 (comment)
Codecov Report
@@ Coverage Diff @@
## main #5 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 3 3
Lines 8 27 +19
=========================================
+ Hits 8 27 +19
Continue to review full report at Codecov.
|
Boom! Passing!! 💥 |
When reviewing this PR, visit the Fly.io App: https://gitea-demo.fly.dev/ And the |
@SimonLab I've done a quick (self) proof-read of https://github.com/dwyl/gitea-demo/blob/extend-demo/part2.md and made a few updates. I feel this PR is now in a reviewable state. Thanks! 🙏 |
Very keen to test the CI/CD (specifically deploying the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Follow-up deployment debugging required: #16 |
The extended demo is working fine on
localhost
:https://gitea-server.fly.dev/demo-org/hello-world
But deploying it to Fly.io is proving more challenging than I had hoped.
Opened a dedicated issue for the
ssh
key setup: #4 on Fly.io