Add boilerplate code, Docker environment, Makefile etc.

This commit is contained in:
Lexi / Zoe 2021-07-23 03:18:33 +02:00
parent 1e9d351173
commit 114a67dbe4
Signed by: binaryDiv
GPG key ID: F8D4956E224DA232
21 changed files with 3766 additions and 0 deletions

14
docker-compose.yml Normal file
View file

@ -0,0 +1,14 @@
version: '3.4'
services:
app:
build:
context: .
target: development
ports:
- 8080:80
env_file:
- .env.develop
volumes:
- ./:/var/www/
user: ${DOCKER_UID}