mirror of
https://github.com/jkaninda/laravel-php-fpm.git
synced 2025-12-06 17:09:39 +01:00
27 lines
687 B
YAML
27 lines
687 B
YAML
version: '3'
|
|
services:
|
|
php-fpm:
|
|
image: jkaninda/laravel-php-fpm:latest
|
|
container_name: php-fpm
|
|
restart: unless-stopped
|
|
volumes:
|
|
#Project root
|
|
- ./laravel:/var/www/html
|
|
networks:
|
|
- default #if you're using networks between containers
|
|
#Nginx server
|
|
nginx-server:
|
|
image: jkaninda/nginx-fpm:alpine
|
|
container_name: nginx-server
|
|
restart: unless-stopped
|
|
ports:
|
|
- 80:80
|
|
volumes:
|
|
- ./laravel:/var/www/html
|
|
environment:
|
|
- DOCUMENT_ROOT=/var/www/html/public
|
|
- CLIENT_MAX_BODY_SIZE=20M
|
|
- PHP_FPM_HOST=php-fpm:9000
|
|
networks:
|
|
- default
|