first commit
This commit is contained in:
19
docker-compose.yml
Normal file
19
docker-compose.yml
Normal file
@@ -0,0 +1,19 @@
|
||||
version: '3.8'
|
||||
|
||||
services:
|
||||
nginx:
|
||||
image: nginx:latest
|
||||
container_name: number-nginx
|
||||
ports:
|
||||
- "8081:80"
|
||||
volumes:
|
||||
- ./app:/var/www/html
|
||||
- ./nginx/default.conf:/etc/nginx/conf.d/default.conf
|
||||
depends_on:
|
||||
- php
|
||||
|
||||
php:
|
||||
image: php:8.2-fpm
|
||||
container_name: number-php
|
||||
volumes:
|
||||
- ./app:/var/www/html
|
||||
Reference in New Issue
Block a user