Triggers + EntityLog

This commit is contained in:
2021-04-08 18:29:47 +02:00
parent 140f428491
commit 43d9a65def
20 changed files with 741 additions and 334 deletions

View File

@@ -1,6 +1,7 @@
version: "3.9"
services:
web:
container_name: web
image: nginx:latest
ports:
- "80:80"
@@ -11,6 +12,7 @@ services:
- db
- php
db:
container_name: db
image: mariadb:latest
ports:
- '3306:3306'
@@ -18,6 +20,7 @@ services:
- "MYSQL_ROOT_PASSWORD=webbasedb"
- "MYSQL_DATABASE=webbase"
php:
container_name: php
volumes:
- .:/application:rw
- ./docker/php/php.ini:/usr/local/etc/php/php.ini:ro