Mainnet-laconic stack fixes for laconicd2 #904

Merged
dboreham merged 7 commits from dboreham/mainnet-laconic-v2-fixes into main 2024-07-31 13:51:29 +00:00
Showing only changes of commit a0bb90fd50 - Show all commits

View File

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