Skip to content

Commit b499413

Browse files
authored
Merge pull request aschmelyun#55 from aschmelyun/dev
Minor modifications
2 parents 3a67350 + f3f9ca2 commit b499413

File tree

4 files changed

+20
-16
lines changed

4 files changed

+20
-16
lines changed

README.md

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,30 @@
11
# docker-compose-laravel
2-
A pretty simplified docker-compose workflow that sets up a LEMP network of containers for local Laravel development. You can view the full article that inspired this repo [here](https://medium.com/@aschmelyun).
2+
A pretty simplified Docker Compose workflow that sets up a LEMP network of containers for local Laravel development. You can view the full article that inspired this repo [here](https://dev.to/aschmelyun/the-beauty-of-docker-for-local-laravel-development-13c0).
33

44

55
## Usage
66

77
To get started, make sure you have [Docker installed](https://docs.docker.com/docker-for-mac/install/) on your system, and then clone this repository.
88

9-
First add your entire Laravel project to the `src` folder, then open a terminal and from this cloned respository's root run `docker-compose up -d --build`. Open up your browser of choice to [http://localhost:8080](http://localhost:8080) and you should see your Laravel app running as intended. **Your Laravel app needs to be in the src directory first before bringing the containers up, otherwise the artisan container will not build, as it's missing the appropriate file.**
9+
Next, navigate in your terminal to the directory you cloned this, and spin up the containers for the web server by running `docker-compose up -d --build site`.
1010

11-
**New:** Three new containers have been added that handle Composer, NPM, and Artisan commands without having to have these platforms installed on your local computer. Use the following command templates from your project root, modifiying them to fit your particular use case:
11+
After that completes, follow the steps from the [src/README.md](src/README.md) file to get your Laravel project added in (or create a new blank one).
1212

13-
- `docker-compose run --rm composer update`
14-
- `docker-compose run --rm npm run dev`
15-
- `docker-compose run --rm artisan migrate`
16-
17-
Containers created and their ports (if used) are as follows:
13+
Bringing up the Docker Compose network with `site` instead of just using `up`, ensures that only our site's containers are brought up at the start, instead of all of the command containers as well. The following are built for our web server, with their exposed ports detailed:
1814

1915
- **nginx** - `:8080`
2016
- **mysql** - `:3306`
2117
- **php** - `:9000`
22-
- **npm**
23-
- **composer**
24-
- **artisan**
18+
19+
Three additional containers are included that handle Composer, NPM, and Artisan commands *without* having to have these platforms installed on your local computer. Use the following command examples from your project root, modifying them to fit your particular use case.
20+
21+
- `docker-compose run --rm composer update`
22+
- `docker-compose run --rm npm run dev`
23+
- `docker-compose run --rm artisan migrate`
2524

2625
## Persistent MySQL Storage
2726

28-
By default, whenever you bring down the docker-compose network, your MySQL data will be removed after the containers are destroyed. If you would like to have persistent data that remains after bringing containers down and back up, do the following:
27+
By default, whenever you bring down the Docker network, your MySQL data will be removed after the containers are destroyed. If you would like to have persistent data that remains after bringing containers down and back up, do the following:
2928

3029
1. Create a `mysql` folder in the project root, alongside the `nginx` and `src` folders.
3130
2. Under the mysql service in your `docker-compose.yml` file, add the following lines:

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ networks:
44
laravel:
55

66
services:
7-
nginx:
7+
site:
88
image: nginx:stable-alpine
99
container_name: nginx
1010
ports:
@@ -38,7 +38,7 @@ services:
3838
php:
3939
build:
4040
context: .
41-
dockerfile: Dockerfile
41+
dockerfile: php.dockerfile
4242
container_name: php
4343
volumes:
4444
- ./src:/var/www/html
@@ -69,7 +69,7 @@ services:
6969
artisan:
7070
build:
7171
context: .
72-
dockerfile: Dockerfile
72+
dockerfile: php.dockerfile
7373
container_name: artisan
7474
volumes:
7575
- ./src:/var/www/html
File renamed without changes.

src/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
# Your Laravel app goes in here
1+
## This is where your Laravel app goes
2+
3+
To get started, delete this file and then do one of the following:
4+
5+
- Clone your project or copy all of the files directly into this `src` directory.
6+
- Spin up the Docker network by following the instructions on the main [README.md](../README.md), and install a brand new Laravel project by running `docker-compose run --rm composer create-project laravel/laravel .` in your terminal.

0 commit comments

Comments
 (0)