Init project

Co-authored-by: Clément Reniers <VirisOnGithub@users.noreply.github.com>
This commit is contained in:
2025-06-03 15:13:55 +02:00
commit ba794404ef
66 changed files with 13647 additions and 0 deletions

29
docker-compose.yaml Normal file
View File

@@ -0,0 +1,29 @@
services:
mariadb:
build:
context: images
dockerfile: SQL_Dockerfile
environment:
MARIADB_ROOT_PASSWORD: super_strong_password_of_root
MARIADB_DATABASE: laravel_db
ports:
- "3306:3306"
volumes:
- laravel_db_volume:/var/lib/mysql
laravel:
build:
context: images
dockerfile: Laravel_Dockerfile
ports:
- "8080:8000"
- "8001:8001"
environment:
LARAVEL_DATABASE_USER: laravel_user
LARAVEL_DATABASE_PASSWORD: super_strong_password
LARAVEL_DATABASE_NAME: laravel_db
volumes:
- ./laravel:/app
volumes:
laravel_db_volume: