|
| 1 | +# Local PHP and Node.js development docker setup |
| 2 | + |
| 3 | +## Add docker to your project |
| 4 | +1. Copy everything from `dev/` to your project, including the "hidden" directory `.docker-config/`. Our setup comes with a mix of containers that fit our development needs, but you can remove or replace them in the docker-compose-* files. |
| 5 | +1. Add `docker-compose.yml`, `.docker-config/php-xdebug.ini` and `.docker-data/` to your project's `.gitignore` |
| 6 | +1. Symlink or copy the OS-specific docker-compose file to `docker-compose.yml`. For example, if you're running Linux, you copy or symlink the `docker-compose-linux.yml` file to `docker-compose.yml`. |
| 7 | +1. __Linux only:__ export your UID and GID by adding these lines to your `~/.bashrc`, `~/.bash_profile` or some other script that runs on shell startup: |
| 8 | + ```bash |
| 9 | + export DOCKER_UID=$(id -u) |
| 10 | + export DOCKER_GID=$(id -g) |
| 11 | + ``` |
| 12 | +1. Build/download the images with `docker-compose build`. If you're on Linux and need to use `sudo` to build the image, run `sudo -E docker-compose build` to pass the environment variables you set earlier. |
| 13 | +1. Finally, start the containers with `docker-compose up` |
| 14 | +
|
| 15 | +## Common issues |
| 16 | +
|
| 17 | +### Error starting userland proxy: listen tcp 0.0.0.0:*: bind: address already in use |
| 18 | +Your host already has an application running on the specified port. Most likely, you have web/MySQL/Browsersync running outside of docker and using the same port. You have a couple of options: |
| 19 | +1. Turn off the service that's running outside of docker, or change its port. |
| 20 | +1. Change the port mapping in your docker-compose.yml. When you have a combination of ports like '3306:3306', the first port is the port on your host and the second one is the port in the container. If you change that to '3307:3306', you will be able to access the database from the host on port 3307, but your application running in docker will still connect to port 3306. |
| 21 | +1. Remove the port mapping in your docker-compose.yml. If you don't need this service mapped (for exampleif you are running Browsersync outside of docker), you can simply remove the mapping. |
| 22 | +
|
| 23 | +### npm or yarn watchers slow or maxing out CPU on OSX |
| 24 | +Mac OS has pretty slow file sharing with Docker and in most cases we suggest installing nvm and yarn on the host and running the watcher on the host. If you want to use our wildacrd SSL certificate, you can either copy it from one of the docker images or from our Git repository. The key and certificates are located in `/etc/ssl/docker/`. |
| 25 | +
|
| 26 | +If you are determined to run the watcher inside Docker, you can try using Docker CE Edge and setting up caching for the /app volume. |
| 27 | +
|
| 28 | +### `file not found` or `cannot start service` on OSX |
| 29 | +If your project is outside of /Users, you will need to add it to the shared directories in Docker settings. |
| 30 | +
|
| 31 | +## Common usage |
| 32 | +
|
| 33 | +### PHP and Apache |
| 34 | + * Install dependencies with composer while the containers are running: `docker-compose exec web composer install` |
| 35 | + * Adjust `php.ini` and `vhost.conf` files in `.docker-config/` |
| 36 | +
|
| 37 | +### Node.js |
| 38 | + * Create a file named `.nvmrc` containing the node version that you want (for example `v8.8.0`) |
| 39 | + * Install that version of node in docker: `docker-compose run --rm nodejs nvm install`. |
| 40 | + * Run npm/yarn commands in docker like this: `docker-compose run --rm nodejs npm install` |
| 41 | +
|
| 42 | +Consider creating an alias for the first part of the command to make your life easier. |
| 43 | +
|
| 44 | +## Containers and services |
| 45 | +Our setup has all the basic services we need for a PHP based web project. |
| 46 | +
|
| 47 | +### web - Apache and PHP |
| 48 | +Apache is set up to run on standard ports: `80` for http and `443` for https. A valid (not self-signed) __SSL__ certificate is included in our setup. It covers the wildcard __*.loc-dev.com__ domain, which is also pointed to 127.0.0.1 on our DNS. This allows you to easily use a different subdomain for each of your projects and prevents a lot of browser caching issues. |
| 49 | +
|
| 50 | +Default PHP version in the container is __7.1__ with pretty much all common modules installed and enabled. You can change the PHP version through the environment variable in your `docker-compose.yml` file and it will get switched on your next `docker-compose up`. You can also modify the `php.ini` file for your project in `.docker-config/php.ini`. |
| 51 | +
|
| 52 | +__Xdebug__ is also set up, but it is turned __off by default__ (for performance reasons). The default idekey is `PHPSTORM`, but you can change that and any other xdebug options by creating a `.docker-config/php-xdebug.ini` file and pointing the volume to it in your `docker-compose.yml`. Map your project root to `/app` in PhpStorm for mapping to work correctly. |
| 53 | +
|
| 54 | +PHP __composer__ is also globally installed in the container so that you can easily manage your dependencies from within the container. |
| 55 | +
|
| 56 | +Default connection info for your application: |
| 57 | +Hostname: `web` |
| 58 | +Port: `80` for http or `443` for https (the certificate won't match the hostname) |
| 59 | + |
| 60 | +Default connection info from the host: |
| 61 | +Hostname: `localhost`, `127.0.0.1` or any subdomain of `loc-dev.com` |
| 62 | + |
| 63 | +### db - Percona* MySQL server |
| 64 | +Percona MySQL is Percona's drop-in replacement for MySQL with a lot of great features and performance improvements that make it more practical in production environments. There are issues with the official image on Windows, so we use the Oracle MySQL on Windows only. |
| 65 | +
|
| 66 | +Default connection info for your applications: |
| 67 | + * Hostname: `db` - communication between containers is done by using container names as domain names |
| 68 | + * Port: `3306` |
| 69 | + * Database name: `db` |
| 70 | + * User name: `user` |
| 71 | + * Password: `passw0rd!` |
| 72 | + * Root password is set to `d0ck3r!`, in case your application has to have root level access to MySQL. |
| 73 | +
|
| 74 | +Default connection info from the host: |
| 75 | + * Hostname: `localhost` or `127.0.0.1` |
| 76 | + * Port: `3306` |
| 77 | +
|
| 78 | +### nodejs - nvm and yarn |
| 79 | +nvm (Node Version Manager) is used to install whichever Node.js version you need for the specific project. Once you choose your Node.js version for a project, we suggest that you write it in `.nvmrc`, so that all other developers can use that exact same version. |
| 80 | +
|
| 81 | +Yarn is installed globally in the container and set up to use the same Node.js you are using through nvm. |
| 82 | +
|
| 83 | +By default, the port `3000` is passed to the host, since it's the default port for Browsersync. |
| 84 | + |
| 85 | +### mail - Mailcatcher |
| 86 | +Mailcatcher is a mail (SMTP) server that doesn't pass any mail to the specified addresses, but catches them and displays them for testing and debugging in its web interface that is passed to port `1080` by default. |
| 87 | +
|
| 88 | +If you want to be able to send mail to Mailcatcher from your host, you can pass through port `25` in you `docker-compose.yml` files. |
| 89 | +
|
| 90 | +Default connection info for your applications: |
| 91 | + * Mail server: `mail` |
| 92 | + * Port: `25` for SMTP |
| 93 | +
|
| 94 | +Default connection info from the host: |
| 95 | + * Hostname: `localhost` or `127.0.0.1` |
| 96 | + * Port: `1080` for web interface |
0 commit comments