Skip to content
This repository was archived by the owner on Sep 15, 2019. It is now read-only.

Commit d42435d

Browse files
docs
1 parent 1a2093f commit d42435d

File tree

2 files changed

+60
-1
lines changed

2 files changed

+60
-1
lines changed

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) Jason McCallister <themccallister@gmail.com>
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
13+
all 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
21+
THE SOFTWARE.

README.md

Lines changed: 39 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,39 @@
1-
# Laravel Docker Presets
1+
# Presets for shipping Laravel on Docker
2+
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/jasonmccallister/laravel-docker-preset.svg?style=flat-square)](https://packagist.org/packages/jasonmccallister/laravel-docker-preset)
4+
[![Build Status](https://img.shields.io/travis/jasonmccallister/laravel-docker-preset/master.svg?style=flat-square)](https://travis-ci.org/jasonmccallister/laravel-docker-preset)
5+
[![Quality Score](https://img.shields.io/scrutinizer/g/jasonmccallister/laravel-docker-preset.svg?style=flat-square)](https://scrutinizer-ci.com/g/jasonmccallister/laravel-docker-preset)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/jasonmccallister/laravel-docker-preset.svg?style=flat-square)](https://packagist.org/packages/jasonmccallister/laravel-docker-preset)
7+
8+
Scaffold new projects for shipping Laravel apps with Docker easily! The preset will give you a `Dockerfile`, `docker-compose.yaml`, `.dockerignore`, and `Makefile` with helpful commands to start developing and shipping your application in Docker.
9+
10+
These are tips that I have learned shipping multiple Laravel applications (Amazon ECS, Google Cloud, and Docker Cloud (R.I.P)) over the years in one place.
11+
12+
## Installation
13+
14+
You can install the package via composer:
15+
16+
```bash
17+
composer require jasonmccallister/laravel-docker-preset
18+
```
19+
20+
## Usage
21+
22+
```php
23+
php artisan preset docker
24+
```
25+
26+
Now you can run `make up` and Docker will start to build your app, database, queue worker, and redis.
27+
28+
### Security
29+
30+
If you discover any security related issues, please email themccallister@gmail.com instead of using the issue tracker.
31+
32+
## Credits
33+
34+
- [Jason McCallister](https://github.com/jasonmccallister)
35+
- [All Contributors](../../contributors)
36+
37+
## License
38+
39+
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

0 commit comments

Comments
 (0)