aboutsummaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
diff options
context:
space:
mode:
authorThomas Vanbesien <tvanbesi@proton.me>2026-03-21 20:50:43 +0100
committerThomas Vanbesien <tvanbesi@proton.me>2026-03-21 20:50:43 +0100
commitd1ef15fa39935bfa0420c5ac2b8c269e294c9a6d (patch)
tree618158449863123f6b9527b9db6183f8c3ce5c91 /docker-compose.yml
downloadcamagru-d1ef15fa39935bfa0420c5ac2b8c269e294c9a6d.tar.gz
camagru-d1ef15fa39935bfa0420c5ac2b8c269e294c9a6d.zip
Initial project scaffold
Set up MVC architecture with front controller, router, autoloader, database singleton, and Docker Compose stack (Nginx + PHP-FPM + MariaDB). Includes DB schema, responsive layout, dev tooling (php-cs-fixer, parallel-lint), and documentation.
Diffstat (limited to 'docker-compose.yml')
-rw-r--r--docker-compose.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml
new file mode 100644
index 0000000..a173959
--- /dev/null
+++ b/docker-compose.yml
@@ -0,0 +1,31 @@
+services:
+ nginx:
+ build: ./docker/nginx
+ ports:
+ - "8080:80"
+ volumes:
+ - ./src:/var/www/html
+ depends_on:
+ - php
+
+ php:
+ build: ./docker/php
+ volumes:
+ - ./src:/var/www/html
+ env_file:
+ - .env
+ depends_on:
+ - mariadb
+
+ mariadb:
+ image: mariadb:10.11.11
+ env_file:
+ - .env
+ volumes:
+ - db_data:/var/lib/mysql
+ - ./docker/mariadb/init.sql:/docker-entrypoint-initdb.d/init.sql
+ ports:
+ - "3306:3306"
+
+volumes:
+ db_data: