Initial upload
This commit is contained in:
17
recipes/system/nginx-php/docker-compose.yml
Normal file
17
recipes/system/nginx-php/docker-compose.yml
Normal file
@@ -0,0 +1,17 @@
|
||||
services:
|
||||
php:
|
||||
image: php:8.2-fpm
|
||||
container_name: nginx-php_php
|
||||
volumes:
|
||||
- ./www:/var/www/html
|
||||
|
||||
nginx:
|
||||
image: nginx:latest
|
||||
container_name: nginx-php_nginx
|
||||
ports:
|
||||
- "80:80"
|
||||
volumes:
|
||||
- ./www:/var/www/html
|
||||
- ./nginx.conf:/etc/nginx/conf.d/default.conf
|
||||
depends_on:
|
||||
- php
|
||||
Reference in New Issue
Block a user