Adds Docker to allow users to get the project up and running quickly.

This commit is contained in:
luke
2023-01-28 20:03:55 +00:00
parent 48caaed58c
commit b702e0c084
3 changed files with 52 additions and 0 deletions

14
docker-compose.yml Normal file
View File

@ -0,0 +1,14 @@
version: "3.8"
services:
php:
build:
context: ./docker
volumes:
- .:/var/www/html
composer:
build:
context: ./docker
volumes:
- .:/var/www/html
entrypoint: ["composer"]