https://github.com/deniskorbakov/laravel-12-frankenphp-docker
🐘 FrankenPHP and Laravel Octane with Docker + Laravel 12
https://github.com/deniskorbakov/laravel-12-frankenphp-docker
docker frankenphp laravel php
Last synced: 6 months ago
JSON representation
🐘 FrankenPHP and Laravel Octane with Docker + Laravel 12
- Host: GitHub
- URL: https://github.com/deniskorbakov/laravel-12-frankenphp-docker
- Owner: deniskorbakov
- Created: 2025-03-11T06:09:42.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-21T17:34:55.000Z (6 months ago)
- Last Synced: 2026-01-22T05:23:54.958Z (6 months ago)
- Topics: docker, frankenphp, laravel, php
- Language: PHP
- Homepage:
- Size: 15.9 MB
- Stars: 55
- Watchers: 2
- Forks: 18
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# FrankenPHP and Laravel 12 Octane with Docker
This template was created for a quick start of a Laravel project with already
prepared basic logic and is required by the environment:
[](https://wakatime.com/badge/user/018b9f7a-8548-4f9d-9ebe-df3058a5bab7/project/99e0f23d-daed-4e57-bad1-153393493b85)
## Installation
To start the template you will need git and docker/docker compose
**Performing steps:**
You can also submit a template to yourself through the GitHub interface
```bash
git clone https://github.com/deniskorbakov/laravel-12-frankenphp-docker.git
```
Let's go to the cloned repository
```bash
cd laravel-12-frankenphp-docker
```
Copy env example to env
```bash
cp .env.example .env
```
Let's run the command to start the project
```bash
make init
```
**Docker images - utilities:**
* Laravel 12
* Frankenphp
* Postgres
* Kvrocks
* Supervisor
* Traefik
* Mailhog
**Auxiliary services:**
* Rector + Phpstan + Php_codesniffer
* Pest
**Libraries - prepared code:**
* DTO Laravel-data
* WebSocket - centrifugo
* Horizon - monitoring queue
* laravel/octane
* Admin panel - Filament
* API logic auth
* Logic saved files in storage - db
* Scribe API doc
* Pulse - monitoring app
**Additional functionality:**
* Multi-stage build
* Prepared assembly for local development and sales
* Configured GitHub actions for stat analyzers and deployment
* Customized role system
* Centrifugo real-time messaging server
* Ansible is configured to set up the production environment
* Monitoring system
* Tess - Unit/Feature/Coverage/Architecture
**Go to the project address:**
- [API doc](http://localhost/api/docs)
- [Admin panel](http://localhost/admin/login)
- [Dozzle](http://localhost:9100)
- [Horizon - available only to users with the Developer role](http://localhost/horizon)
- [Pulse - available only to users with the Developer role](http://localhost/pulse)
## Documentation
[Template documentation](documentation/README.md)
## Usage
The command for exec in app container
```bash
make exec
```
The command for check code (phpstan, php cs, rector, peck)
```bash
make lint
```
The command for fix err (php cs, rector)
```bash
make lint-fix
```
The command for run tests
```bash
make test
```
The command for run test coverage
```bash
make test-coverage
```