Skip to content

Commit 40450bf

Browse files
committed
Added CI
1 parent f59f47f commit 40450bf

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

.travis.yml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
env:
2+
- DOCKER_COMPOSE_VERSION: 1.8.0
3+
4+
before_install:
5+
- sudo rm /usr/local/bin/docker-compose
6+
- curl -L https://github.com/docker/compose/releases/download/${DOCKER_COMPOSE_VERSION}/docker-compose-`uname -s`-`uname -m` > docker-compose
7+
- chmod +x docker-compose
8+
- sudo mv docker-compose /usr/local/bin
9+
- docker-compose up -d
10+
11+
script:
12+
- echo docker-compose only

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# centos7-nginx-laravel-container
2+
3+
[![MIT License](http://img.shields.io/badge/license-MIT-blue.svg?style=flat)](LICENSE)
4+
5+
## モジュール
6+
7+
- Nginx
8+
- composer
9+
- php5.6
10+
- php-fpm
11+
- xdebug
12+
13+
## 起動コマンド
14+
15+
```
16+
docker-compose up --build -d
17+
```

0 commit comments

Comments
 (0)