Initial commit

This commit is contained in:
Oliver Davies 2022-06-07 22:00:00 +01:00
commit bd3fce7e64
25 changed files with 888 additions and 0 deletions

25
docker-compose.yaml Normal file
View file

@ -0,0 +1,25 @@
services:
web:
build:
context: .
dockerfile: tools/docker/Dockerfile
target: web
volumes:
- .:/app
- assets:/app/public/build
working_dir: /app
ports:
- "${DOCKER_WEB_PORT:-127.0.0.1:80}:80"
depends_on:
- php
php:
build:
context: .
dockerfile: tools/docker/Dockerfile
target: php-fpm
volumes:
- .:/app
volumes:
assets: {}