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: - awa_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: awa_db_volume: