-
Hi all, I've been trying to run this action with a
The networking model is not entirely clear to me, it seems that GitHub actions automatically puts containers run in the workflow into a shared bridge network, but this magic is not present for Does anyone happen to know how I might go about this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
second. |
Beta Was this translation helpful? Give feedback.
-
For anyone who ends up here in the future, I was able to solve this by:
There are a few examples of this kicking about, including the one I borrowed from in nocobase/nocobase |
Beta Was this translation helpful? Give feedback.
-
It seems that the key point is to set The setting in |
Beta Was this translation helpful? Give feedback.
For anyone who ends up here in the future, I was able to solve this by:
driver-opts: network=host
on thesetup-buildx-action
build-args
into thebuild-push-action
with alocalhost:port
addressThere are a few examples of this kicking about, including the one I borrowed from in nocobase/nocobase