Hey there! If you’re reading this, you’re probably diving into the world of NginX and Docker for the first time. Maybe you’re a developer, a DevOps newbie, or just someone curious about how to make your web server setup easier. Trust me, I’ve been there. The first time I tried to set up NginX with Docker, I felt like I was trying to solve a Rubik’s Cube blindfolded. But don’t … [Read more...] about NginX With Docker: A Beginner’s Guide
DevOps
AWS CodeDeploy: Simplifying Application Deployments
Hi there! Today, I’m going to walk you through AWS CodeDeploy, a nifty tool that changed the way I deploy applications. With over a decade of experience, I have seen it all—failed rollouts, midnight rollbacks, etc. CodeDeploy isn’t just a tool; it’s a lifesaver. Whether you’re just stepping into the cloud or hitting walls and deploying stuff manually, this guide’s for … [Read more...] about AWS CodeDeploy: Simplifying Application Deployments
Multi-Container Application from Scratch with Docker Compose
In this tutorial, we'll walk through the process of containerizing a multi-container Docker application using "Docker Compose." We'll create a simple web application consisting of a Python Flask backend, a Redis database, and an Nginx web server. Note: This post has been updated to reflect the usage change from "fig" , which is the predecessor to … [Read more...] about Multi-Container Application from Scratch with Docker Compose
Simple Github Push To Deploy Tutorial
If you are using GitHub as your project's source code repository, whether open source or private, it's a good idea to set up an automated deployment mechanism so that whenever someone from your team pushes to the repository, your web app gets built/updated automatically to the latest changes. Several continuous integration systems, like Travis, Jenkins, etc., can be … [Read more...] about Simple Github Push To Deploy Tutorial
Build PHP Web Application In One Step Using Makefile
If you manually deploy your PHP web application by updating revision, setting proper permissions, running tests, etc, from the command line, maybe it's time for you to automate these things better to save time. In case you have already tried, and maybe you are a little distracted by learning such a build system like "phing", well, there is good news for you: you can avoid that … [Read more...] about Build PHP Web Application In One Step Using Makefile