diff options
author | 2023-02-07 08:46:09 -0800 | |
---|---|---|
committer | 2023-02-07 08:46:09 -0800 | |
commit | 7cd26232b12fae36a907722c4f50edd6e2ddf596 (patch) | |
tree | ac3b16606baa2276c246ab786c1af6e0df640daf | |
parent | a0b0cd6844204413694760cd1dd983d8ce3c83e8 (diff) | |
download | bun-7cd26232b12fae36a907722c4f50edd6e2ddf596.tar.gz bun-7cd26232b12fae36a907722c4f50edd6e2ddf596.tar.zst bun-7cd26232b12fae36a907722c4f50edd6e2ddf596.zip |
Update docker image in README
-rw-r--r-- | README.md | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -23,7 +23,9 @@ Today, bun's primary focus is bun.js: bun's JavaScript runtime. ## Install -Native: (macOS x64 & Silicon, Linux x64, Windows Subsystem for Linux) +Bun supports Linux (x64 & arm64) and macOS (x64 & Apple Silicon). If you want to use Bun on Windows, you will need to use Windows Subsystem for Linux. Bun will [soon](https://github.com/oven-sh/bun/issues/43) support Windows, natively. + +curl: ```sh curl -fsSL https://bun.sh/install | bash @@ -35,18 +37,18 @@ npm: npm install -g bun ``` -Homebrew: (MacOS and Linux) +Homebrew: ```sh brew tap oven-sh/bun brew install bun ``` -Docker: (Linux x64) +Docker: ```sh -docker pull jarredsumner/bun:edge -docker run --rm --init --ulimit memlock=-1:-1 jarredsumner/bun:edge +docker pull oven/bun +docker run --rm --init --ulimit memlock=-1:-1 oven/bun ``` If using Linux, kernel version 5.6 or higher is strongly recommended, but the minimum is 5.1. |