Dev Env should not use sudo by default

This commit is contained in:
Andrey Berezin 2023-09-18 17:48:30 +03:00 committed by Andrey Berezin
parent be9b3f5855
commit b039ee9940

View file

@ -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: