https://github.com/jondotsoy/docker-laravel
While designed for web development, with Laravel Framework.
https://github.com/jondotsoy/docker-laravel
Last synced: about 2 months ago
JSON representation
While designed for web development, with Laravel Framework.
- Host: GitHub
- URL: https://github.com/jondotsoy/docker-laravel
- Owner: JonDotsoy
- License: mit
- Created: 2015-08-04T05:49:55.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-09T04:14:14.000Z (almost 9 years ago)
- Last Synced: 2025-01-26T10:30:37.322Z (4 months ago)
- Language: ApacheConf
- Homepage: https://hub.docker.com/r/alfa30/laravel/
- Size: 8.79 KB
- Stars: 8
- Watchers: 2
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Laravel to Docker
=================Laravel Tags
------------- [`4.2` \[`4.2.11`\] (4.2/Dockerfile)](4.2/Dockerfile)
- [`5.0` \[`5.0.16`\] (5.0/Dockerfile)](5.0/Dockerfile)
- [`5.1` \[`5.1.4`\] (5.1/Dockerfile)](5.1/Dockerfile)> **NOTE**: These containers using `php 5.6-apache`.
What is Laravel?
----------------Laravel is a free, open-source PHP web application framework, created by Taylor Otwell and intended for the development of web applications following the model–view–controller (MVC) architectural pattern. Prominent Laravel features include its expressive syntax, a modular packaging system with a dedicated dependency manager, different ways for accessing relational databases, and various utilities that aid in application deployment and maintenance.
> [wikipedia.org/wiki/Laravel](https://wikipedia.org/wiki/Laravel)

Docker Pull Command
-------------------```bash
docker pull alfa30/laravel
```### Especific Version
- 5.1 `docker pull alfa30/laravel:5.1`
- 5.0 `docker pull alfa30/laravel:5.0`
- 4.2 `docker pull alfa30/laravel:4.2`Build Laravel 5.1
-----------------```bash
docker build -t alfa30/laravel:5.1 5.1/.
```### Develop Terminal
```bash
docker run --rm -it -p 8900:80 alfa30/laravel:5.1 bash
docker run --rm -it -p 8900:80 alfa30/laravel:5.1
```Build Laravel 5
---------------```bash
docker build -t alfa30/laravel:5.0 5.0/.
```### Develop Terminal
```bash
docker run --rm -it -p 8900:80 alfa30/laravel:5.0 bash
docker run --rm -it -p 8900:80 alfa30/laravel:5.0
```Build Laravel 4.2
-----------------```bash
docker build -t alfa30/laravel:4.2 4.2/.
```### Develop Terminal
```bash
docker run --rm -it -p 8900:80 alfa30/laravel:4.2 bash
docker run --rm -it -p 8900:80 alfa30/laravel:4.2
```