How To Host Web App For Free In 2024
When it comes to managing our clients’ domain names, Cloudflare has become our go-to DNS solution. Its reliability, instantaneous DNS updates, and robust DDoS protection make it a cornerstone of our operations, all while being free of charge. However, Cloudflare’s...
Docker More, SSH Less – Docker Machine to AWS EC2
Let’s explore some alternative for Docker production deployment besides of using AWS ECS and Manual Docker Engine deployment Manual Docker Engine deployment provide us the full details of all the commands to run, but its always better to just run...
Laravel in Docker on the Cloud – Amazon ECS
We have created our Docker Hub image here and hosted it in a self-provisioned Ubuntu server. What if we want to host it on Amazon ECS (Elastic Container Service) Fargate with the Docker Hub image? Let’s do it: 1. Sign...
Laravel in Docker on the Cloud – Part 2
Continue from Part 1 Now the problem we face now is that we need to stop and re-run the docker image whenever there’s any changes in the Laravel code. To solve this, we can mount the project root into the...
Save time deploying Laravel with Gitlab CI to Staging server
It’s kind of pain to SSH into staging server and run git pull whenever there’s any code change in Master repo for testing in the staging server. It would save some time if whenever there’s a push to Master, Gitlab...