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
If I run with DEBUG=* environment variable I get error:
Error parsing boolean value from DEBUG: %s strconv.ParseBool: parsing "*": invalid syntax
I had similar problem (Quobject/dockermachineconfig#1) end fixed it with:
return exec('docker-machine config ' + name, { env: { //needed for https://github.com/Quobject/dockermachineconfig/issues/1 HOME: process.env.HOME, DEBUG: '' } });
I made a version that works with DEBUG=*: https://www.npmjs.com/package/dockermachine-cli-js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If I run with DEBUG=* environment variable I get error:
I had similar problem (Quobject/dockermachineconfig#1) end fixed it with:
I made a version that works with DEBUG=*:
https://www.npmjs.com/package/dockermachine-cli-js
The text was updated successfully, but these errors were encountered: