Skip to content

Commit e9d65f3

Browse files
committedOct 30, 2018
docker-apache-php-mysql-laravel environment done
1 parent e5dba19 commit e9d65f3

File tree

112 files changed

+12996
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+12996
-0
lines changed
 

‎.circleci/config.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: 2
2+
jobs:
3+
build:
4+
working_directory: ~/laravel
5+
machine: true
6+
branches:
7+
ignore:
8+
- master
9+
- develop
10+
steps:
11+
- checkout
12+
13+
- run:
14+
name: Start container and verify it's working
15+
command: |
16+
make start-ci
17+
18+
- run:
19+
name: Wait for DB container is running and initialize DB
20+
command: |
21+
make wait-for-db
22+
make drop-migrate
23+
make migrate
24+
make seed
25+
26+
- run:
27+
name: Run unit/functional tests
28+
command: |
29+
make phpunit
30+
31+
- store_artifacts:
32+
path: reports
33+
34+
- store_test_results:
35+
path: reports

‎.dockerignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.dockerignore
2+
docker-compose.yml
3+
docker-compose-ci.yml
4+
docker-compose-prod.yml
5+
Makefile
6+
/.git*
7+
/.idea*
8+
storage/mysql-data
9+
vendor/
10+
bootstrap/cache
11+
!bootstrap/cache/.gitignore

0 commit comments

Comments
 (0)