How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "bkenro/centos7dsm"
end
vagrant init bkenro/centos7dsm
vagrant up
This version was created over 1 year ago.
Based on official CentOS/7 v1902.01 with Apache 2.4, MariaDB 5.5, PHP 7.3, Drush 8.2.3, Composer 1.8, and samba 4 for sharing folder with host OS. For the detailed creation procedure of this box, see http://www.white-root.com/blog/1488684305 .
Vagrantfile and utilities tailored for this box is available at https://github.com/bkenro/centos7dsm.
This version was created about 2 years ago.
Based on official CentOS/7 v1811.02 with Apache 2.4, MariaDB 5.5, PHP 7.2, Drush 8.18, Composer 1.8, and samba 4 for sharing folder with host OS. For the detailed creation procedure of this box, see http://www.white-root.com/blog/1488684305.
Vagrantfile and utilities tailored for this box is available at https://github.com/bkenro/centos7dsm.
For more details, see following posts (Japanese):
This version was created over 2 years ago.
Based on official CentOS/7 v1804.02 with updates to PHP 7.2, Drush 8.17, Drupal Console 1.8.0 and Composer 1.6.5.
This version was created almost 3 years ago.
New release confirmed to work with vagrant 2.0.2 and VirtualBox 5.2.6. This version updated the configuration so that the virtual machine has two web folders:
/var/www/html is exposed on default port 80. This folder is located on linux file system, so the access is relatively fast.
/var/www/pj is exposed on port 8080 intended for development use. This folder actually does not exist in this box. You can setup this as a synced_folder by adding Vagrantfile configuration something like this:
config.vm.synced_folder "pj/", "/var/www/pj", type: "virtualbox", mount_options: ['dmode=777','fmode=777']
You can choose appropriate one based on whether you'd like to access to the files from the host os or not.
This version was created over 3 years ago.
update drush to 8.1.15.
This version was created over 3 years ago.
initial experimental release.