Initial Commit

This commit is contained in:
2024-09-14 17:13:47 -05:00
parent 8a66d4b350
commit 986404d5b3
14 changed files with 288 additions and 3 deletions

28
docker-compose.yml Normal file
View File

@@ -0,0 +1,28 @@
services:
nginx:
build:
context: "nginx"
dockerfile: "Dockerfile"
volumes:
- ./src:/var/www/html:ro
ports:
- 8080:80
- 8443:443
depends_on:
- phpfpm
phpfpm:
build:
context: "phpfpm"
dockerfile: "Dockerfile"
volumes:
- ./src:/var/www/html:rw
db:
image: mariadb
env_file: .env.db
composer:
image: composer
volumes:
- ./src:/app