26 lines
820 B
Diff
26 lines
820 B
Diff
From 432ab009827f6bc84fb07d424d95d10328b4b185 Mon Sep 17 00:00:00 2001
|
|
From: zhongjiawei <zhongjiawei1@huawei.com>
|
|
Date: Fri, 21 Feb 2025 11:00:10 +0800
|
|
Subject: [PATCH] docker:modify hostconfig.json perm to 640
|
|
|
|
---
|
|
components/engine/container/container.go | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/components/engine/container/container.go b/components/engine/container/container.go
|
|
index 3dcfdaefa..6eaee714e 100644
|
|
--- a/components/engine/container/container.go
|
|
+++ b/components/engine/container/container.go
|
|
@@ -262,7 +262,7 @@ func (container *Container) WriteHostConfig() (*containertypes.HostConfig, error
|
|
return nil, err
|
|
}
|
|
|
|
- f, err := ioutils.NewAtomicFileWriter(pth, 0644)
|
|
+ f, err := ioutils.NewAtomicFileWriter(pth, 0640)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
--
|
|
2.33.0
|
|
|