We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There are at least 2 ways to use this plugin with remote runners. Neither are great. At least one works. Documentation is greatly needed.
-platform=docker
This requires a custom runner image to be passed to waypoint runner install. Furthermore, that image needs ...
waypoint runner install
nixpacks
waypoint-plugin-nixpacks
FROM hashicorp/waypoint:latest ARG PLUGIN_NAME=waypoint-plugin-nixpacks COPY ./bin/$PLUGIN_NAME $HOME/.config/waypoint/plugins/$PLUGIN_NAME
waypoint runner agent
In this route, the EC2 machine itself has
$HOME/.config/waypoint/plugins/waypoint-plugin-nixpacks
runner
cp
registry
The text was updated successfully, but these errors were encountered:
TIL: you can use the gh CLI to upload assets to an existing release. This might make fetching from a remote runner ever so slightly easier.
gh
gh release upload v0.1.0-beta.2 ./bin/waypoint-plugin-nixpacks
Sorry, something went wrong.
curl -o $HOME/.config/waypoint/plugins/waypoint-plugin-nixpacks -LO https://github.com/thiskevinwang/waypoint-plugin-nixpacks/releases/download/v0.1.0-beta.2/waypoint-plugin-nixpacks
No branches or pull requests
Description
There are at least 2 ways to use this plugin with remote runners. Neither are great. At least one works. Documentation is greatly needed.
-platform=docker
on EC2This requires a custom runner image to be passed to
waypoint runner install
.Furthermore, that image needs ...
nixpacks
installedwaypoint-plugin-nixpacks
in a location that is detected by waypointwaypoint runner agent
, on EC2In this route, the EC2 machine itself has
nixpacks
installed$HOME/.config/waypoint/plugins/waypoint-plugin-nixpacks
runner
branch of this repo, andcp
-ing the committed binary.registry
componentThe text was updated successfully, but these errors were encountered: