This repository has been archived by the owner on Dec 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
211 additions
and
67 deletions.
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Sync folders configuration | ||
synced_folders: | ||
# nfs: better performance on Mac, recommended. | ||
# smb: better performance on Windows. Requires Vagrant to be run with admin privileges. | ||
# smb2: experimental, does not require running vagrant as admin, requires initial manual setup. | ||
# rsync: the best performance, cross-platform platform, one-way only. Run `vagrant rsync-auto` to start auto sync. | ||
# When using rsync sync type the "folders" list below is mandatory. | ||
# vboxfs (or leave empty): best compatibility and ease of setup, but poor performance. | ||
type: 'nfs' | ||
# smb_user, smb_password - The username and password used for authentication to mount the SMB mount. | ||
# This is usually your Windows username and password, unless you created a dedicated user for vagrant. | ||
smb_username: '' | ||
smb_password: '' | ||
# List of folders to sync with rsync. These should be subfolder names within the <Projects> folder (e.g. "drupal7") | ||
# Uncomment and add folders per the example below as neccessary. | ||
folders: | ||
#- "projectA" # rsync projectA folder | ||
#- "projectB" # rsync projectB folder | ||
#- "" # rsync the whole <Projects> folder. WARNING: don't do this if your <Projects> folder is big. | ||
|
||
# VirtualBox VM settings | ||
v.gui: false # Set to true for debugging. Will unhide VM's primary console screen. | ||
v.memory: 2048 # Memory settings. | ||
v.cpus: 1 # CPU settings. VirtualBox works much better with a single CPU. | ||
|
||
# Network settings | ||
# The default box private network IP is 192.168.10.10 | ||
# Uncomment lines below to map additional IP addresses for use with multiple projects. | ||
# Project specific `<IP>:<port>` mapping for containers is done in via docker-compose in `docker-compose.yml` | ||
hosts: | ||
#- ip: 192.168.10.11 | ||
#- ip: 192.168.10.12 | ||
#- ip: 192.168.10.13 |