first commit

This commit is contained in:
2026-04-02 15:13:15 +05:30
commit 24b759888a
6 changed files with 251 additions and 0 deletions

19
docker-compose.yml Normal file
View 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