A Docker proxy for running Docker builds within Fly's infrastructure.
This is deployed as an independent Fly application when running flyctl deploy --remote-only
for the first time.
Then, flyctl will use this remote builder for all applications deployed by the organization.
You probably/definitely want to use a separate vm, like vagrant. This service runs and manages its own docker service, which will maybe interfere with up the docker service on your system.
vagrant up # gets you a vm with all the tools you need
vagrant ssh # gets you onto that vm
cd rchab # this is a folder on the vm, which is synced with the local repo and it support live updated 🎉
make run-local-no-auth # run the service!
If that all worked, the service is running 🚀
http://localhost:8080 will have the rchab api in the vm and on your host.
flyctl
can be configured to use a locally running version of rchab with:
FLY_REMOTE_BUILDER_HOST_WG=1 FLY_RCHAB_OVERRIDE_HOST=tcp://127.0.0.1:2375 LOG_LEVEL=debug fly deploy --remote-only
FLY_REMOTE_BUILDER_HOST_WG
disables usermode wireguardFLY_RCHAB_OVERRIDE_HOST
indicates the ip and port for the docker client to connect to, which will be used instead of the remote builder machine 6pn ip
Deploy a pre-release version, e.g., with make build-and-push-docker
and then set on your org with:
fly orgs builder update <your_org> <image_ref>
Github actions deploy changes pushed to the main branch.
Fly.io staff need to make an internal update for the new image to become the default for all builders.