- 35
- 666 275
Emad Zaamout
Canada
Приєднався 21 бер 2009
Hello.
Welcome to my channel. My name is Emad Zaamout. My core mission is to provide you with best quality free learning materials related to the Tech Industry.
Follow Me
Linkedin - www.linkedin.com/in/emad-zaamout/
Github - github.com/emad-zaamout
Welcome to my channel. My name is Emad Zaamout. My core mission is to provide you with best quality free learning materials related to the Tech Industry.
Follow Me
Linkedin - www.linkedin.com/in/emad-zaamout/
Github - github.com/emad-zaamout
Docker Health Checks
In this course, we will cover docker health checks.
Health checks are needed to ensure your containers are “healthy” before starting your application.
For example, if you want to automatically run your migrations after your api docker container is up, then you wont really be able to do that if the database isnt ready to handle traffic.
Github Starter Files: github.com/emad-zaamout/course-docker-health-checks-starter-files
Chapters
0:00 Introduction
0:36 Clone sample project
1:51 docker health checks
Health checks are needed to ensure your containers are “healthy” before starting your application.
For example, if you want to automatically run your migrations after your api docker container is up, then you wont really be able to do that if the database isnt ready to handle traffic.
Github Starter Files: github.com/emad-zaamout/course-docker-health-checks-starter-files
Chapters
0:00 Introduction
0:36 Clone sample project
1:51 docker health checks
Переглядів: 656
Відео
Unsigned Integers vs UUIDs for Laravel Distributed Systems
Переглядів 2105 місяців тому
Laravel Edition. In this quick tutorial I explain why using unsigned AUTO_INCREMENTED integer IDs for your database tables is bad and why you should use UUIDs instead. Using Laravel, I will show you how to do that quickly.
Running Dockerized Laravel as Non Root User
Переглядів 3986 місяців тому
Laravel docker security using custom user instead of root. Easily fix all laravel permission errors. Course Material Github github.com/emad-zaamout/course-material-laravel-docker-security-custom-user-setup Chapters 0:00 Introduction 0:35 Risks of using Root User 1:05 Setting up your local 5:40 UID & GID 7:47 Creating new user 8:35 File Permissions & Ownership 10:40 Configuring Server to use new...
Deploy Dockerized Laravel Application using AWS ECS + AWS CodeBuild
Переглядів 17 тис.Рік тому
Deploy any Dockerized application using AWS RDS, ECR, ECS, Load Balancers, ECS Cluster, Task Definitions, Target Groups, Route53, AWS ACM, IAM, GitHub, etc … Github Repository github.com/emad-zaamout/laravel-docker-aws-deployment-course-start Chapters 0:00 Intrduction 1:03 Github Setup 1:50 Laravel Project Setup 5:19 Docker Walkthrough 7:41 Install AWS CLI 8:42 Laravel Deployment Prep 9:52 AWS ...
PHP Code Quality using CodeSniffer phpcbf, phpcs
Переглядів 1,6 тис.Рік тому
PHP_CodeSniffer is a set of two PHP scripts; the main phpcs script that tokenizes PHP, JavaScript and CSS files to detect violations of a defined coding standard, and a second phpcbf script to automatically correct coding standard violations. PHP_CodeSniffer is an essential development tool that ensures your code remains clean and consistent.
Amazon Elastic Container Registry (AWS ECR)
Переглядів 2,8 тис.Рік тому
Amazon Elastic Container Registry (AWS ECR) Last video, we learned how to create custom docker images. In this tutorial, we will learn how to store and use our docker images in AWS ECR. AWS ECR is a container image registry service which allows us to store Docker containers for both public and private access. Base Image Github URL github.com/emad-zaamout/php-fpm-nginx-base-image
Docker Custom Images
Переглядів 1,2 тис.Рік тому
Eliminate containers build time. Github URL for laravel-docker-nginx-php-fpm-opcache github.com/emad-zaamout/laravel-docker-nginx-php-fpm-opcache Hello guys, welcome back. In this tutorial, were going to learn how to create our own custom docker images. If your using Docker to run your Laravel project, then it should be obvious that building your project locally takes a long time. Generally, in...
Dockerized SonarQube - Code Quality and Code Security
Переглядів 17 тис.Рік тому
SonarQube Communication Edition is an open-source code quality and security tool that analyzes your code and provides you with code quality and security reports. If you’re building a SAAS application, then using tools like SonarQube is essential as it can be used to detected bugs, vulnerabilities, bad programming practises maintainability scores and much more. If your using continuous developme...
Linux Permissions Explained
Переглядів 7262 роки тому
Linux permissions explained. Linux permissions made easy. full course.
Laravel Docker Nginx + PHP-FPM + op_cache
Переглядів 17 тис.2 роки тому
Laravel Docker Nginx PHP OP CACHE OPcache is a caching engine built into PHP. When enabled, it dramatically increases the performance of websites that utilize PHP. This course, we will build and Dockerize a new Laravel Project. We will learn how to build Nginx and set up OP Cache for top performance. My Github Account: github.com/emad-zaamout If your new to Docker, you should watch my other vid...
Laravel Makefiles Course
Переглядів 2,3 тис.2 роки тому
In this course, were going to learn how to build Makefiles. A common problem you will always face when working on any project, is how to build and work with your project. By using Makefiles, you can forever change how you build your projects. Stop wasting time running your commands manually. Its not efficient. Today you might remember all the commands you need to build your project. Few months ...
Windows WSL 2 Docker Tutorial
Переглядів 15 тис.2 роки тому
To run Docker on Windows, there’s few ways. You can either run it using the Docker legacy Hyper-V backend, or you can use WSL 2 which offers much better performance and stability. What is Windows Subsystem for Linux (WSL2)? The Windows System for Linux (WSL) lets you run a Linux environment directly on windows without needing to use virtual machines or dualboot setup. This allows you to fully t...
Laravel 9 Complete Course | Blog Implementation
Переглядів 6 тис.2 роки тому
In this course, we will learn how to build web applications using the Laravel framework. We will build a personal blog, with an admin section where you can create, update, and delete blogs and images. This course will also include user management. To keep things simple, we will use Laravel blade, jQuery, and bootstrap 5 for the frontend. For the backend, its mostly just Laravel. Some of the top...
Laravel Docker Course | Complete Laravel Dockerization
Переглядів 85 тис.2 роки тому
Complete Laravel Docker implementation. Full course. In this course, you will learn everything that you’ll need to know about Docker. We will be building a new Laravel Docker template that you can use to run all your Laravel Projects. Our implementation will include 6 containers: 1. PHP 2. WebSockets 3. Database 4. Redis 5. Queue 6. Node I will also provide you a sample Laravel project that we ...
Laravel WebSockets Course | Chat App Example
Переглядів 16 тис.2 роки тому
Hello and Welcome back to another AHT Cloud training series. In this course, we will cover custom Laravel WebSocket Chat Application implementation using the Laravel framework. We will not be using any third-party vendor for the WebSocket’s server. We will implement it from scratch, and we will use our server to handle all the WebSocket’s communications. Before we get started, don’t forget to s...
Laravel API Development | MVCS + Repository Pattern | Laravel Backend Course
Переглядів 9 тис.2 роки тому
Laravel API Development | MVCS Repository Pattern | Laravel Backend Course
MySQL Tutorial - MySQL Error Log, General Query Log and Slow Query Log
Переглядів 7 тис.2 роки тому
MySQL Tutorial - MySQL Error Log, General Query Log and Slow Query Log
Laravel Eloquent ORM vs Raw Queries | Laravel Performance Testing
Переглядів 1,6 тис.2 роки тому
Laravel Eloquent ORM vs Raw Queries | Laravel Performance Testing
Email DNS Master Course | SPF + DKIM + DMARC Explained
Переглядів 57 тис.3 роки тому
Email DNS Master Course | SPF DKIM DMARC Explained
DMARC Tutorial - How to set up DNS DMARC record | Protect Your Doman
Переглядів 9 тис.3 роки тому
DMARC Tutorial - How to set up DNS DMARC record | Protect Your Doman
Email SPF Record Tutorial - Sender Policy Framework (SPF) | Prevent Email Spoofing | DNS Course
Переглядів 1,8 тис.3 роки тому
Email SPF Record Tutorial - Sender Policy Framework (SPF) | Prevent Email Spoofing | DNS Course
AWS Load Balancer and AWS Target Groups Tutorial
Переглядів 16 тис.3 роки тому
AWS Load Balancer and AWS Target Groups Tutorial
AWS Elastic Load Balancing Explained
Переглядів 3 тис.3 роки тому
AWS Elastic Load Balancing Explained
AWS Tutorial - How to copy/clone/duplicate EC2 Instances?
Переглядів 22 тис.3 роки тому
AWS Tutorial - How to copy/clone/duplicate EC2 Instances?
How to Install PHP on Windows Server 2019?
Переглядів 16 тис.3 роки тому
How to Install PHP on Windows Server 2019?
Git Tutorial - Git Hooks Crash Course
Переглядів 7 тис.3 роки тому
Git Tutorial - Git Hooks Crash Course
DevOps Tutorial - Laravel Deployment Automation CI\\CD using AWS RDS EC2 S3 CodeDeploy BitBucket
Переглядів 24 тис.3 роки тому
DevOps Tutorial - Laravel Deployment Automation CI\\CD using AWS RDS EC2 S3 CodeDeploy BitBucket
How to increase your AWS EC2 Instance Storage (EBS Volumes) with no downtime?
Переглядів 16 тис.3 роки тому
How to increase your AWS EC2 Instance Storage (EBS Volumes) with no downtime?
Git Tutorial - Git Crash Course using BitBucket
Переглядів 204 тис.3 роки тому
Git Tutorial - Git Crash Course using BitBucket
Laravel Tutorial - Laravel Setup Windows 10 Vagrant Homestead Orcale VM VirtualBox
Переглядів 11 тис.3 роки тому
Laravel Tutorial - Laravel Setup Windows 10 Vagrant Homestead Orcale VM VirtualBox
Thank you so much. It's wonderful! brief and to the point!
Obrigado meu amigo!
replace opcache.validate_timestamp to opcache.validate_timestamps
Very good tutorial
fantastic, thank you bro.
Спасибо огромное, нигде не находил , только в вашем видео!
Nice video! I have a question! How do you manage the queues and cron jobs?
Awesome video with great explanations! Thanks so much! I just noticed a few minor mistakes that some people might find relevant: - at 12:42 it says "RUA" for both reports, but it should be "RUA" for the aggregate report and "RUF" for the forensic report - at 18:43 about aspf the slide on screen says "relaxed" is the default (which I also found on other sources) but in your voice-over you say that the default is strict
I think I made a right decision and switched to laravel.
Very Good Video to understand GIT and Bitbucket , many thanks Emad .
How can I adapt to use App Runner? Do you recommend?
Yes, please make a video on dkim when hosting your own mail server
Great video. By the way, how do you know exactly the extensions and packages required for the php container at 19:53?
I cloned the app and start it, but it doesn't work. PHP, que and socket containers are not running. I use Docker on Windows 10. Would someone help me?
Meant dkim video
Skim video would be great
When i did ls -la /var/www show root root as owner. So i remove RUN chown ..... and add the chown command on the entrypoint.sh . This fix my error, i don' t know if this is ok.
Thanks !!! many time saved !!!
Emad you are amazing, nobody makes complete laravel + docker videos. Can you make a video with frankenphp?
You made my day ya @emad Thanks a lot.
Oh man, i learn a lot today. Thanks!
For some reason for me its slower your method than laravel sail running a new laravel project, even using the same version of PHP and Mysql
This is a great explanation, thanks
thank you
Thanks alot!! I was stuck at loading my site, and through your video i resolved it by installing libapache for my php version
Hi, I don't see in the Dockerfile where you install nginx; you just copy the .conf file. How does that work if the image is just for PHP? Cheers!
I've never seen anything as great as this video. Thank you ありがとうございます!
If you are a beginner, please change the security group when connecting to the public IP
Year 2024 and still relevant ✅
Thanks!
BRILLIANT!!!!!!!
Great video
Can you do another video on how we can do that using sonar scanner on Jenkins
video is good but sound is very low!
why in Dockerfile.local the entrypiont is ENTRYPOINT [ "docker/entrypoint.sh" ] i think it supposed to be ENTRYPOINT [ "docker/entrypoint.local.sh" ]
For some reason my container does not connect to laragon MySQL. I mean start the server as you do, but it says connection refused?
Thanks!🙂
Great work here using AWS and Bitbucket. You should follow a standard naming convention; everything else looks fine to me. Maybe I could give it a try with a Drupal project instead of Laravel.
This is now 2 years old. Any updates on SPF, DKIM, or DMARC
Excellent
great video
Wonderful tutorial, I knew nothing about git commands. It is very beginner friendly and can't express my gratitude in words.
Loved your video
Thanks for the tutorial, was very informative but I could not get it to work... I kept getting "php-1 | exec docker/entrypoint.sh: no such file or directory"
great vid
ok that is great video❤
Thanks!
thank you for your video.
Excellent video tutorial 👋, thanks you so much.
i'm going to ask a really stupid question . do we need to have web server, php and composer already installed before all this I've recently switched from windows where i have everything set up for projects to linux ubuntu i've nothing installed configuring all those old projects are headach i've access to many projects everytime i switched to new system cus i couldn't configure them all due to different version requirements All the people under this video looks experienced i'm the only fool here i've copied the old laravel project and installed docker ( have not any any docker compose file till now) i'm new to docker i dont know how to containerize different project tho i'm getting a bit of understanding but still had that stupid question so Do i need to have apach, php, composer pre installed before creating container/image in docker-compose?
answer is YES. Laravel requires composer and PHP. And as far as the web server, you can set one up but in this example it's using PHP's (or artisan's) SERVE command. Using the SERVE command is not as ideal as having a webserver running. You can easily add a webserver to the docker-compose file, there are many examples online on how to do this.