-
Notifications
You must be signed in to change notification settings - Fork 5
installation
The stack is well tested on Debian, Ubuntu and Mac OS X only, but should run on any major Linux distribution, Mac OS X and Windows.
- Ensure you have a fair amount of RAM (8G recommended).
- Git must be available on your host machine
Windows: Ensure the git executable is accessible as git
on the command line, not as git.exe
Vagrant is used to orchestrate and coordinate the containers, but also to make a few adjustments to the setup based on your host OS. The ce-vm implementation does not use VirtualBox, but Docker only.
Install a recent Vagrant version from www.vagrantup.com.
Linux: Do NOT use the version from your distribution repositories; those are always outdated. Use the official version provided at www.vagrantup.com.
You also need the 'vagrant-hostsupdater' plugin, that can be installed with:
vagrant plugin install vagrant-hostsupdater
Docker is used as a Vagrant provider. You need a recent version of the native app from docker.com.
The older "boot2docker / Docker Toolbox" implementations that were using an extra VM layer using Virtualbox are not supported by ce-vm.
The older "boot2docker / Docker Toolbox" implementations that were using an extra VM layer using Virtualbox are not supported by ce-vm.
The Docker daemon can only be managed by the root user by default. As with any other Docker-based stack, this means you either have to:
- Run each and every
vagrant
command using sudo. Besides the obvious security issues, it also means that the ce-vm base will get installed under the root user home dir instead of yours, and that all files, including your codebase will be owned by the root user. In practice, this is very unpractical. - Add yourself to the "docker" group, so you can run
vagrant
commands as your standard unprivileged user - see docs.docker.com for details. It does solve the issue, but this poses a security risk you need to be aware of and understand. See here for details. Some users tend to just "live with it" as it is the most convenient solution, but we strongly advise you not to do this. - The recommended solution -until it gets fixed in vagrant- is to wrap 'docker' so it forces a sudo call. See the tips section for usage.
There is nothing more to do. The "stack' itself will install itself when you vagrant up
for the first time, by git cloning the main ce-vm repo from https://github.com/codeenigma/ce-vm/ as ~/.CodeEnigma/ce-vm/${VERSION}/ce-vm-upstream on your host.