Skip to content

Commit

Permalink
Change /tmp folders permissions to allow write access
Browse files Browse the repository at this point in the history
Signed-off-by: ezgidemirel <[email protected]>
  • Loading branch information
ezgidemirel committed Jul 10, 2023
1 parent a988407 commit 8435206
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions internal/oci/spec/spec.go
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,12 @@ func New(o ...Option) (*runtime.Spec, error) {
Source: "tmpfs",
Options: []string{"nosuid", "strictatime", "mode=755", "size=65536k"},
},
{
Type: "tmpfs",
Destination: "/tmp",
Source: "tmp",
Options: []string{"nosuid", "strictatime", "mode=755", "size=65536k"},
},
{
Type: "bind",
Destination: "/sys",
Expand Down

0 comments on commit 8435206

Please sign in to comment.