mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Fix EPERM with OCI quick start
Fixes #8106 PiperOrigin-RevId: 485960462
This commit is contained in:
committed by
gVisor bot
parent
ac414d4360
commit
b322d1cc5b
@@ -19,8 +19,8 @@ Create a root file system for the container. We will use the Docker
|
||||
`hello-world` image as the basis for our container.
|
||||
|
||||
```bash
|
||||
mkdir rootfs
|
||||
docker export $(docker create hello-world) | tar -xf - -C rootfs
|
||||
mkdir --mode=0755 rootfs
|
||||
docker export $(docker create hello-world) | sudo tar -xf - -C rootfs --same-owner --same-permissions
|
||||
```
|
||||
|
||||
Next, create an specification file called `config.json` that contains our
|
||||
|
||||
Reference in New Issue
Block a user