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
{{ message }}
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.
Mac OSX that has docker installed via brew (and maybe others?) expect docker command to be run as the user and not with sudo. So the kitchen driver needs to have the line use_sudo: false added as in:
If you don't do that, when you even run rake -T you will get all sorts of errors from the line Kitchen::RakeTasks.new in the Rakefile cause it trys to do sudo -E docker > /dev/null and fails spewing error messages.
The text was updated successfully, but these errors were encountered:
Mac OSX that has docker installed via brew (and maybe others?) expect docker command to be run as the user and not with sudo. So the kitchen driver needs to have the line
use_sudo: false
added as in:If you don't do that, when you even run
rake -T
you will get all sorts of errors from the lineKitchen::RakeTasks.new
in the Rakefile cause it trys to dosudo -E docker > /dev/null
and fails spewing error messages.The text was updated successfully, but these errors were encountered: