First commit

This commit is contained in:
2025-02-28 08:45:43 +01:00
commit 1f4e772600
1122 changed files with 74621 additions and 0 deletions

22
docker-compose.yml Normal file
View File

@ -0,0 +1,22 @@
services:
php:
image: php:8-fpm
volumes:
- ./cms:/var/www/html
networks:
- app-network
nginx:
image: nginx:alpine
ports:
- "8088:80"
volumes:
- ./cms:/var/www/html
- ./nginx.conf:/etc/nginx/conf.d/default.conf
depends_on:
- php
networks:
- app-network
networks:
app-network: