-
I want to use private actions in form of docker from a private docker registry (we use Artifactory), something like: jobs:
my_first_job:
steps:
- name: My first step
uses: docker://<my-private-registry>:<image>:<tag> Github does not support passing the credentials yet (although it supports job containers) and since pulling images happens before any steps you cannot really authenticate with Artifactory. Is there any chance we can support that in the runner startup script? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Adding to this: our private registry has a self signed certificate installed without a full trust chain. Any idea's on how to support this so we can still pull containers from it?
|
Beta Was this translation helpful? Give feedback.
-
Ended up building our own image and doing something like this
|
Beta Was this translation helpful? Give feedback.
Ended up building our own image and doing something like this