Explicitly use --provider option for vagrant up
When a provider other than virtualbox is registered in Vagrant, `vagrant up` can not start Mastodon. For example, it corresponds to the environment where Parallels Desktop is installed.
This commit is contained in:
parent
ba27b6ed63
commit
e8bcf6a035
1 changed files with 3 additions and 3 deletions
|
@ -17,11 +17,11 @@ To create and provision a new virtual machine for Mastodon development run:
|
|||
|
||||
git clone https://github.com/tootsuite/mastodon.git
|
||||
cd mastodon
|
||||
vagrant up
|
||||
vagrant up --provider virtualbox
|
||||
|
||||
**Note:** On Linux hosts, you will need to [enable NFS support](https://www.vagrantup.com/docs/synced-folders/nfs.html).
|
||||
|
||||
Running `vagrant up` for the first time will run provisioning, which will:
|
||||
Running `vagrant up --provider virtualbox` for the first time will run provisioning, which will:
|
||||
|
||||
- Download the Ubuntu 14.04 base image, if there isn't already a copy on your machine
|
||||
- Create a new VirtualBox virtual machine from that image
|
||||
|
@ -29,7 +29,7 @@ Running `vagrant up` for the first time will run provisioning, which will:
|
|||
|
||||
## Starting the server
|
||||
|
||||
The Vagrant box will automatically start after provisioning. It can be started in future with `vagrant up` from the mastodon directory.
|
||||
The Vagrant box will automatically start after provisioning. It can be started in future with `vagrant up --provider virtualbox` from the mastodon directory.
|
||||
|
||||
To start the application:
|
||||
|
||||
|
|
Loading…
Reference in a new issue