Attention
You can now run different PHP versions per project:
Release v3.0.0-beta-0.1
2. Install the Devilbox¶
Important
Ensure you have read and followed the Prerequisites
Table of Contents
2.1. Download the Devilbox¶
The Devilbox does not need to be installed. The only thing that is required is its git directory. To download that, open a terminal and copy/paste the following command.
host> git clone https://github.com/cytopia/devilbox
2.2. Create .env
file¶
Inside the cloned Devilbox git directory, you will find a file called env-example
. This file
is the main configuration with sane defaults for Docker Compose. In order to use it, it must be
copied to a file named .env
. (Pay attention to the leading dot).
host> cp env-example .env
The .env
file does nothing else than providing environment variables for Docker Compose
and in this case it is used as the main configuration file for the Devilbox by providing all kinds
of settings (such as which version to start up).
2.3. Set uid and gid¶
To get you started, there are only two variables that need to be adjusted:
NEW_UID
NEW_GID
The values for those two variables refer to your local (on your host operating system) user id and group id. To find out what the values are required in your case, issue the following commands on a terminal:
2.3.1. Find your user id¶
host> id -u
2.3.2. Find your group id¶
host> id -g
In most cases both values will be 1000
, but for the sake of this example, let’s assume a value
of 1001
for the user id and 1002
for the group id.
Open the .env
file with your favorite text editor and adjust those values:
host> vi .env
NEW_UID=1001
NEW_GID=1002
2.4. OS specific setup¶
2.4.1. Linux: SELinux¶
If you have SELinux enabled, you will also have to adjust the MOUNT_OPTIONS to allow shared mounts among multiple container:
host> vi .env
MOUNT_OPTIONS=,z
2.4.2. OSX: Performance¶
Out of the box, Docker for Mac has some performance issues when it comes to mount directories with a lot of files inside. To mitigate this issue, you can adjust the caching settings for mounted directories.
To do so, you will want to adjust the MOUNT_OPTIONS to allow caching on mounts.
host> vi .env
MOUNT_OPTIONS=,cached
Ensure to read the links below to understand why this problem exists and how the fix works. The Docker documentation will also give you alternative caching options to consider.
2.5. Checklist¶
- Devilbox is cloned
.env
file is created- User and group id have been set in
.env
file
That’s it, you have finished the first section and have a working Devilbox ready to be started.
See also