blackbirdchess-docker-dev/DOCUMENTATION/content/getting-started/index.md

202 lines
5.5 KiB
Markdown
Raw Normal View History

2017-03-17 08:36:00 +01:00
---
title: Getting Started
type: index
weight: 2
---
2017-05-01 12:36:31 +02:00
# Requirements
2017-03-17 08:36:00 +01:00
- [Git](https://git-scm.com/downloads)
- [Docker](https://www.docker.com/products/docker/) `>= 1.12`
2017-05-01 12:36:31 +02:00
# Installation
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
Choose the setup the best suits your needs.
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
- [A) Setup for Single Project](#A)
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
- [A.1) Already have a PHP project](#A1)
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
- [A.2) Don't have a PHP project yet](#A2)
2017-03-17 08:36:00 +01:00
- [B) Setup for Multiple Projects](#B)
2017-05-01 12:36:31 +02:00
[]()
## A) Setup for Single Project
2017-03-17 08:36:00 +01:00
> (Follow these steps if you want a separate Docker environment for each project)
2017-05-01 12:36:31 +02:00
[]()
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
## A.1) Already have a PHP project:
2017-03-17 08:36:00 +01:00
1 - Clone laradock on your project root directory:
```bash
git submodule add https://github.com/Laradock/laradock.git
```
2017-05-01 12:36:31 +02:00
Note: If you are not using Git yet for your project, you can use `git clone` instead of `git submodule`.
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
_To keep track of your Laradock changes, between your projects and also keep Laradock updated [check these docs](/documentation/#keep-track-of-your-laradock-changes)_
2017-03-17 08:36:00 +01:00
Your folder structure should look like this:
```
+ project-a
2017-04-25 02:49:25 +02:00
+ laradock-a
2017-03-17 08:36:00 +01:00
+ project-b
2017-04-25 02:49:25 +02:00
+ laradock-b
2017-03-17 08:36:00 +01:00
```
2017-05-01 12:36:31 +02:00
_(It's important to rename the laradock folders to unique name in each project, if you want to run laradock per project)._
2017-03-17 07:46:19 +01:00
> **Now jump to the [Usage](#Usage) section.**
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
[]()
## A.2) Don't have a PHP project yet:
2017-03-17 08:36:00 +01:00
1 - Clone this repository anywhere on your machine:
```bash
git clone https://github.com/laradock/laradock.git
```
Your folder structure should look like this:
```
+ laradock
+ project-z
```
2 - Edit your web server sites configuration.
We'll need to do step 1 of the [Usage](#Usage) section now to make this happen.
2017-03-17 08:36:00 +01:00
```
cp env-example .env
```
2017-03-17 08:36:00 +01:00
At the top, change the `APPLICATION` variable to your project path.
2017-03-17 08:36:00 +01:00
```
2017-05-01 12:36:31 +02:00
APPLICATION=../project-z/
```
Make sure to replace `project-z` with your project folder name.
2017-03-17 08:36:00 +01:00
2017-03-17 07:46:19 +01:00
> **Now jump to the [Usage](#Usage) section.**
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
[]()
## B) Setup for Multiple Projects:
2017-03-17 08:36:00 +01:00
> (Follow these steps if you want a single Docker environment for all your project)
2017-05-01 12:36:31 +02:00
1 - Clone this repository anywhere on your machine (similar to [Steps A.2\. from above](#A2)):
2017-03-17 08:36:00 +01:00
```bash
git clone https://github.com/laradock/laradock.git
```
Your folder structure should look like this:
```
+ laradock
+ project-1
+ project-2
```
2 - Go to `nginx/sites` and create config files to point to different project directory when visiting different domains.
Laradock by default includes `project-1.conf` and `project-2.conf` as working samples.
3 - change the default names `project-n`:
You can rename the config files, project folders and domains as you like, just make sure the `root` in the config files, is pointing to the correct project folder name.
4 - Add the domains to the **hosts** files.
```
127.0.0.1 project-1.dev
127.0.0.1 project-2.dev
```
2017-03-17 07:46:19 +01:00
> **Now jump to the [Usage](#Usage) section.**
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
[]()
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
# Usage
2017-03-17 08:36:00 +01:00
**Read Before starting:**
If you are using **Docker Toolbox** (VM), do one of the following:
2017-03-31 18:35:13 +02:00
- Upgrade to Docker [Native](https://www.docker.com/products/docker) for Mac/Windows (Recommended). Check out [Upgrading Laradock](/documentation/#upgrading-laradock)
2017-05-01 12:36:31 +02:00
- Use Laradock v3.*. Visit the [Laradock-ToolBox](https://github.com/laradock/laradock/tree/Laradock-ToolBox) branch. _(outdated)_
2017-03-17 08:36:00 +01:00
<br>
2017-05-01 12:36:31 +02:00
> **Warning:** If you used an older version of Laradock it's highly recommended to rebuild the containers you need to use [see how you rebuild a container](#Build-Re-build-Containers) in order to prevent as much errors as possible.
2017-03-17 08:36:00 +01:00
<br>
1 - Enter the laradock folder and copy `env-example` to `.env`
2017-03-17 07:46:19 +01:00
```shell
cp env-example .env
```
2017-03-17 07:46:19 +01:00
You can edit the `.env` file to chose which software's you want to be installed in your environment. You can always refer to the `docker-compose.yml` file to see how those variables are been used.
2017-03-17 08:36:00 +01:00
2017-03-17 07:46:19 +01:00
2 - Build the enviroment and run it using `docker-compose`
In this example we'll see how to run NGINX (web server) and MySQL (database engine) to host a PHP Web Scripts:
2017-03-17 08:36:00 +01:00
```bash
docker-compose up -d nginx mysql
```
**Note**: The `workspace` and `php-fpm` will run automatically in most of the cases, so no need to specify them in the `up` command. If you couldn't find them running then you need specify them as follow: `docker-compose up -d nginx php-fpm mysql workspace`.
2017-04-15 02:02:27 +02:00
You can select your own combination of containers form [this list](http://laradock.io/introduction/#supported-software-images).
2017-03-17 08:36:00 +01:00
2017-05-01 12:36:31 +02:00
_(Please note that sometimes we forget to update the docs, so check the `docker-compose.yml` file to see an updated list of all available containers)._
2017-03-17 08:36:00 +01:00
<br>
2017-03-17 07:46:19 +01:00
3 - Enter the Workspace container, to execute commands like (Artisan, Composer, PHPUnit, Gulp, ...)
2017-03-17 08:36:00 +01:00
```bash
docker-compose exec workspace bash
```
2017-05-01 12:36:31 +02:00
_Alternatively, for Windows PowerShell users: execute the following command to enter any running container:_
2017-03-17 08:36:00 +01:00
```bash
docker exec -it {workspace-container-id} bash
```
2017-05-01 12:36:31 +02:00
**Note:** You can add `--user=laradock` to have files created as your host's user. Example:
2017-03-17 08:36:00 +01:00
```shell
docker-compose exec --user=laradock workspace bash
```
2017-05-01 12:36:31 +02:00
_You can change the PUID (User id) and PGID (group id) variables from the `.env` file)_
2017-03-17 08:36:00 +01:00
<br>
2017-03-17 07:46:19 +01:00
4 - Update your project configurations to use the database host
2017-03-17 08:36:00 +01:00
2017-03-17 07:46:19 +01:00
Open your PHP project's `.env` file or whichever configuration file you are reading from, and set the database host `DB_HOST` to `mysql`:
2017-03-17 08:36:00 +01:00
```env
DB_HOST=mysql
```
2017-05-01 12:36:31 +02:00
_If you want to install Laravel as PHP project, see [How to Install Laravel in a Docker Container](#Install-Laravel)._
2017-03-17 08:36:00 +01:00
<br>
2017-05-01 12:36:31 +02:00
5 - Open your browser and visit your localhost address `http://localhost/`. If you followed the multiple projects setup, you can visit `http://project-1.dev/` and `http://project-2.dev/`. But first don't