Skip to content

Commit 2bd7a30

Browse files
committed
add readme.md
1 parent 044177f commit 2bd7a30

File tree

3 files changed

+67
-1
lines changed

3 files changed

+67
-1
lines changed

LICENCE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Masafumi Konishi
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
docker-php-nginx-mysql-memcached
2+
====
3+
4+
## Overview
5+
6+
Docker Compose for PHP, nginx, PHP-FPM, MySQL, memcached development environment.
7+
8+
## Description(Japanse)
9+
10+
[【超簡単】Docker を使って1クリックでモダンな PHP 開発環境ができるようにする(PHP, MySQL, PHP-FPM, nginx, memcached)](http://koni.hateblo.jp/entry/2017/01/28/150522)
11+
12+
## Install
13+
14+
Install Docker for Mac.
15+
16+
[Docker for Mac](https://docs.docker.com/docker-for-mac/)
17+
18+
Clone this repository.
19+
20+
```bash
21+
$ git clone [email protected]:koni/docker-php-nginx-mysql-memcached.git
22+
```
23+
24+
## Usage
25+
26+
Up:
27+
28+
```bash
29+
$ cd docker-php-nginx-mysql-memcached/docker
30+
$ docker-compose up
31+
```
32+
33+
Stop:
34+
35+
```bash
36+
$ docker-compose stop
37+
```
38+
39+
## License
40+
41+
This software is released under the MIT License, see [LICENSE](https://github.com/koni/docker-php-nginx-mysql-memcached/blob/master/LICENSE).
42+
43+
## Author
44+
45+
[koni](https://github.com/koni)
46+

docker/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ services:
4141
links:
4242
- mysql
4343
environment:
44-
CI_ENV: development
4544
DATABASE_HOST: 'mysql'
4645
DATABASE_NAME: 'mysql_database'
4746
DATABASE_USER: 'mysql_user'

0 commit comments

Comments
 (0)