diff options
Diffstat (limited to 'content/docs/includes')
-rw-r--r-- | content/docs/includes/index.md | 3 | ||||
-rw-r--r-- | content/docs/includes/install_gvisor.md | 37 |
2 files changed, 0 insertions, 40 deletions
diff --git a/content/docs/includes/index.md b/content/docs/includes/index.md deleted file mode 100644 index cbb7365a6..000000000 --- a/content/docs/includes/index.md +++ /dev/null @@ -1,3 +0,0 @@ -+++ -headless = true -+++ diff --git a/content/docs/includes/install_gvisor.md b/content/docs/includes/install_gvisor.md deleted file mode 100644 index 5a10d4054..000000000 --- a/content/docs/includes/install_gvisor.md +++ /dev/null @@ -1,37 +0,0 @@ -The easiest way to get `runsc` is from the [latest nightly -build][latest-nightly]. After you download the binary, check it against the -SHA512 [checksum file][latest-hash]. - -Older builds can also be found here (note that some days may not have releases -due to failing builds): - - `https://storage.googleapis.com/gvisor/releases/nightly/${yyyy-mm-dd}/runsc` - -With corresponding SHA512 checksums here: - - `https://storage.googleapis.com/gvisor/releases/nightly/${yyyy-mm-dd}/runsc.sha512` - -**It is important to copy this binary to a location that is accessible to all -users, and ensure it is executable by all users**, since `runsc` executes itself -as user `nobody` to avoid unnecessary privileges. The `/usr/local/bin` directory is -a good place to put the `runsc` binary. - -```bash -( - set -e - if [ -e runsc ]; then rm runsc; fi - wget https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc - if [ -e runsc.sha512 ]; then rm runsc.sha512; fi - wget https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc.sha512 - sha512sum -c runsc.sha512 - sudo mv runsc /usr/local/bin - sudo chown root:root /usr/local/bin/runsc - sudo chmod 0755 /usr/local/bin/runsc -) -``` - -[latest-nightly]: https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc - -[latest-hash]: https://storage.googleapis.com/gvisor/releases/nightly/latest/runsc.sha512 - -[oci]: https://www.opencontainers.org |