Skip to content

Slim Laravel 10 boilerplate + docker-compose with alpine-linux based images for nginx, redis, php-fpm

Notifications You must be signed in to change notification settings

ndmgrphc/laravel-10-boilerplate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Apr 22, 2023
60ce964 · Apr 22, 2023

History

1 Commit
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023
Apr 22, 2023

Repository files navigation

Laravel 10 Boilerplate

The goal of this project is to serve as a boilerplate for Laravel 10 utilizing light-weight alpine linux images for nginx and php 8.2 (fpm).

Stack:

  • app @ php:8.2-fpm-alpine
  • nginx @ nginx:alpine
  • mysql @ mysql
  • redis @ redis:alpine
  • worker-local @ php:8.2-alpine3.16

TODO

  • add a basic, highly optional seeder for user
  • hook up worker-local so you have a queue to play with
  • create an example job/worker you might co-locate on same hardware
  • maybe add some ci/cd and even k8s stuff as an example to scale out workers/nginx/edges

Notes

  • docker/app docker/nginx will rely on supervisor to maintain their processes, yawn
  • Please see .env "#PORT FORWARDS" before starting in docker-compose

Installation

The default docker-compose config here exposes ports if you want them. See .env's "PORT FORWARDS"

cp ./env.example ./.env
docker-compose up --build -d app nginx mysql

#docker-compose exec app php artisan migrate

# grab a shell inside docker/app
docker-compose exec -u root app /bin/sh

# then, inside shell
npm install

# vite
npm run dev -- --host

You can now access http://localhost:8022 (or whatever your FORWARD_NGINX_PORT is).

Please keep ./composer.lock in docker/app container context, for example:

docker-compose exec -u root app /bin/sh
# then...
# COMPOSER_MEMORY_LIMIT=-1 app composer install
# COMPOSER_MEMORY_LIMIT=-1 app composer require awesome/package_etc
# ymmv w/ COMPOSER_MEMORY_LIMIT maybe try without

About

Slim Laravel 10 boilerplate + docker-compose with alpine-linux based images for nginx, redis, php-fpm

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published