Created
February 10, 2021 18:07
-
-
Save lucj/648854af6f43f59923029e827c653a48 to your computer and use it in GitHub Desktop.
gVisor installation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
( | |
set -e | |
URL=https://storage.googleapis.com/gvisor/releases/release/latest | |
wget ${URL}/runsc ${URL}/runsc.sha512 \ | |
${URL}/gvisor-containerd-shim ${URL}/gvisor-containerd-shim.sha512 \ | |
${URL}/containerd-shim-runsc-v1 ${URL}/containerd-shim-runsc-v1.sha512 | |
sha512sum -c runsc.sha512 \ | |
-c gvisor-containerd-shim.sha512 \ | |
-c containerd-shim-runsc-v1.sha512 | |
rm -f *.sha512 | |
chmod a+rx runsc gvisor-containerd-shim containerd-shim-runsc-v1 | |
sudo mv runsc gvisor-containerd-shim containerd-shim-runsc-v1 /usr/local/bin | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment