- Installer virtualbox
- Installer vagrant
- Ubuntu - Host install virtualbox
- Activer la virtualisation dans le bios
- Ajouter la box laravel/homestead
vagrant box add laravel/homestead| FROM centos:7 | |
| MAINTAINER "orion" <[email protected]> | |
| # Steps needed to use systemd enabled docker containers. | |
| # Reference: https://hub.docker.com/_/centos/ | |
| ENV container docker | |
| RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == \ | |
| systemd-tmpfiles-setup.service ] || rm -f $i; done); \ | |
| rm -f /lib/systemd/system/multi-user.target.wants/*;\ | |
| rm -f /etc/systemd/system/*.wants/*;\ |
| #!/bin/bash | |
| ###################################################### | |
| ### README ########################################### | |
| ###################################################### | |
| ### | |
| ### One-line server install script for Ubuntu. | |
| ### Installs Nginx + PHP7.1 + MongoDB for PHP driver. | |
| ### | |
| ### Removes previous Apache, PHP, nginx installations. |
vagrant box add laravel/homestead