Dev Env should not use sudo by default
This commit is contained in:
parent
be9b3f5855
commit
b039ee9940
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class ServiceAttributes(ParsedAttributes):
|
|||
class DockerHost(Host):
|
||||
"""Manages services hosted in Docker containers running on a local or remote machine."""
|
||||
|
||||
def get_shell(self, sudo: bool = True) -> Shell:
|
||||
def get_shell(self, sudo: bool = False) -> Shell:
|
||||
host_attributes = HostAttributes.parse(self._config.attributes)
|
||||
command_inspectors = []
|
||||
if sudo:
|
||||
|
|
Loading…
Reference in a new issue