All Projects β†’ prbdias β†’ docker-lumen

prbdias / docker-lumen

Licence: other
Lumen running on top of a Docker LEMP stack.

Programming Languages

PHP
23972 projects - #3 most used programming language
ApacheConf
554 projects
Nginx
273 projects
shell
77523 projects

Projects that are alternatives of or similar to docker-lumen

lumen-api-starter
A starter project to develop API with Lumen 8.*
Stars: ✭ 42 (+162.5%)
Mutual labels:  lumen
learn-english
πŸ“š Vue + Element-UI + Lumen εΌ€ε‘ηš„θƒŒε•θ―εΊ”η”¨
Stars: ✭ 53 (+231.25%)
Mutual labels:  lumen
lumen-vue-todo
ToDo App with Lumen, Vue.js, Vue Router and Vuex
Stars: ✭ 33 (+106.25%)
Mutual labels:  lumen
rentnride
Rent&Ride is an open source for Car Rental script. Travel to any of your favourite places by availing the services in the Rent & Ride application. Book cars for rental by making use of the flexibility to choose the car of your interest.
Stars: ✭ 37 (+131.25%)
Mutual labels:  lumen
schema-builder
Laravel/Lumen schema builder & migration generator
Stars: ✭ 51 (+218.75%)
Mutual labels:  lumen
roadrunner-laravel
Simple bridge between Symfony and RoadRunner.
Stars: ✭ 43 (+168.75%)
Mutual labels:  lumen
lumen-file-manager
File manager module for the Lumen PHP framework.
Stars: ✭ 40 (+150%)
Mutual labels:  lumen
klaravel
DEPRECATED Laravel control panel for developers, comes with integrated Scaffold generator, backups, logs, and embedde user guide.
Stars: ✭ 24 (+50%)
Mutual labels:  lumen
response
Response HTTP package for Simfony, Laravel, Lumen and PHP 7 with standard REST API
Stars: ✭ 14 (-12.5%)
Mutual labels:  lumen
lumen-lighthouse-graphql
Lumen example use of a GraphQL PHP server using Lighthouse package
Stars: ✭ 31 (+93.75%)
Mutual labels:  lumen
lumen-boilerplate
Opinionated way to start a new Lumen project.
Stars: ✭ 20 (+25%)
Mutual labels:  lumen
microservice-remote-models
A Lumen package to provide a familiar model paradigm for distributed data.
Stars: ✭ 22 (+37.5%)
Mutual labels:  lumen
laravel5-hal-json
Laravel 5 HAL+JSON API Transformer Package
Stars: ✭ 15 (-6.25%)
Mutual labels:  lumen
laravel-web-logs
View Laravel File-Based Logs In Web
Stars: ✭ 162 (+912.5%)
Mutual labels:  lumen
laravel-custom-auth
Article: Laravel Custom Auth with guard & driver
Stars: ✭ 32 (+100%)
Mutual labels:  lumen
sns-laravel
A library to enable sending and receiving broadcasts to and from SNS topics in Laravel and Lumen.
Stars: ✭ 23 (+43.75%)
Mutual labels:  lumen
laravel-bash-helpers
Daily tasks made easier
Stars: ✭ 20 (+25%)
Mutual labels:  lumen
lumen-start-app
Boilerplate for laravel/lumen framework https://github.com/laravel/lumen, ready to be used with https://github.com/ionghitun/react-start-app or https://github.com/ionghitun/next-start-app
Stars: ✭ 41 (+156.25%)
Mutual labels:  lumen
eshop
e-commerce website built with reactjs & redux on the frontend and lumen on the backend.
Stars: ✭ 27 (+68.75%)
Mutual labels:  lumen
lumen-oauth2
OAuth2 module for the Lumen PHP framework.
Stars: ✭ 29 (+81.25%)
Mutual labels:  lumen

Docker Lumen

Install

Before you start make sure you have Docker Compose installed on your machine.

Clone the repo by running the following command

$ git clone https://github.com/prbdias/docker-lumen.git

Config

Before you start your application make sure you have created the file .env with the correct Docker configuration values. Please take a look into the example on the file .env.example

$ cp .env.example .env

Run

To start you application you just need to run the following command

$ docker-compose up -d --build

Test

PHP-FPM

Give it 5min while composer installs all the Lumen dependencies automatically under the vendor folder.

Once it has finished you should be able to see Lumen's default page on your browser.

PHP-CLI

In order to run PHP on the command line you can list all the containers by running

$ docker-compose ps

Assuming you left the the config value COMPOSE_PROJECT_NAME=app you should see a container running with the name app_workspace_1

All you have to do is to run the following command to use the workspace container as your main bash

$ docker exec -i -t app_workspace_1 /bin/bash

And then you will have PHP ready for you, just give it a try!

$ php artisan
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].