diff --git a/stack_orchestrator/deploy/deploy_util.py b/stack_orchestrator/deploy/deploy_util.py index 3b8da913..9e204baa 100644 --- a/stack_orchestrator/deploy/deploy_util.py +++ b/stack_orchestrator/deploy/deploy_util.py @@ -82,6 +82,8 @@ def run_container_command(ctx: DeployCommandContext, service: str, command: str, docker_output = deployer.run( container_image, ["-c", command], entrypoint="sh", + # Current laconicd container has a bug where it crashes when run not as root + # Commented out line below is a workaround. Created files end up owned by root on the host # user=f"{os.getuid()}:{os.getgid()}", volumes=docker_volumes )