alexkb/laravel-docker

A starter project for laravel with docker

Maintainers

👁 alexkb

Package info

github.com/alexkb/laravel-docker

Type:project

pkg:composer/alexkb/laravel-docker

Statistics

Installs: 11

Dependents: 0

Suggesters: 0

Stars: 0

v5.7.19 2018-12-15 14:37 UTC

Requires

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT 70532dd8ae1eb4cf27c66c92d8bc6fa4ed2c7a18

frameworklaravel


README

For information about Laravel, see the original README.md.

Project purpose

A base for running Laravel under Docker locally and on AWS. Note: this codebase is very much a WIP.

Initial setup

  1. Use composer's create-project command to create a new project in a folder blog:

     $ composer create-project --prefer-dist alexkb/laravel-docker:dev-master blog 
    
  2. Build and run application

     $ cd blog
     $ ./scripts/local/build.sh
     $ ./scripts/local/start.sh
    
  3. Now load up http://localhost:8083/ in a browser, and you should see the default Laravel home page.

Todo

  • Add in AWS CLI container with ability to push to ECS or Fargate.
  • Document how to use with Bitbucket Pipelines
  • Containers for scheduler and queue worker.

Why don't you use laraadock?

Laradock is a very good package at covering all use cases for Laravel with Docker. This project has a different use case, which is to provide the bare minimum as a start point, as well as being easier to deploy to an online environment.