You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
generator: Add an environment variable to choose the container runtime (#172)
There are now many alternative container runtimes. These often
expose a socket interface which is compatible with the `docker`
CLI, but may also have their own command line utilities. For our
limited requirements, these alternative CLIs are often compatible
enough with the `docker` CLI that we can use them directly.
This PR adds an environment variable to allow users running alternative
container runtimes to use their CLIs directly when building SDKs,
removing the need to have the `docker` CLI tools installed as well.
I've tested the generator with `podman`; it produced identical SDKs
to the current implementation (#171), with good performance.
The `docker` CLI is currently still required to run the SDK generator
tests.
0 commit comments