docs: Add instructions for Apple Silicon Macs.

This commit is contained in:
Gilbert Bishop-White
2021-05-27 08:29:32 +01:00
committed by Tim Abbott
parent b43cab3e3b
commit e2654b7154

View File

@@ -80,6 +80,8 @@ Jump to:
#### macOS #### macOS
##### Intel
1. Install [Vagrant][vagrant-dl] (latest). 1. Install [Vagrant][vagrant-dl] (latest).
2. Install [VirtualBox][vbox-dl] (latest). 2. Install [VirtualBox][vbox-dl] (latest).
@@ -90,6 +92,12 @@ a provider for Vagrant.)
Now you are ready for [Step 2: Get Zulip code](#step-2-get-zulip-code). Now you are ready for [Step 2: Get Zulip code](#step-2-get-zulip-code).
##### Apple Silicon
The setup for Apple Silicon (e.g. M1) Macs is very similar to that [for Intel
above](#intel), except that VirtualBox is not supported. Instead you can use [Docker for
Mac](https://docs.docker.com/docker-for-mac/install/).
#### Ubuntu #### Ubuntu
##### 1. Install Vagrant, Docker, and Git ##### 1. Install Vagrant, Docker, and Git
@@ -277,12 +285,12 @@ Change into the zulip directory and tell vagrant to start the Zulip
development environment with `vagrant up`: development environment with `vagrant up`:
``` ```
# On Windows or macOS: # On Windows or macOS (Intel):
cd zulip cd zulip
vagrant plugin install vagrant-vbguest vagrant plugin install vagrant-vbguest
vagrant up --provider=virtualbox vagrant up --provider=virtualbox
# On Linux: # On Linux or macOS (Apple Silicon):
cd zulip cd zulip
vagrant up --provider=docker vagrant up --provider=docker
``` ```