Docker Desktop Basics

Docker Desktop: Docker Desktop is secure, out-of-the-box containerization software offering developers and teams a robust, hybrid toolkit to build, share, and run applications anywhere. Dockers are: quick to setup, simple…

Comments Off on Docker Desktop Basics

Creating a Simple App Using Django

At first, create a new project with https://www.jetbrains.com/pycharm/ . Then, pip install django Now create a Django project named: devTest django-admin startproject devTest cd devTest Now, create a pp named…

Comments Off on Creating a Simple App Using Django

How to install MySQL on CentOS

sudo yum install mysql-server systemctl status mysqld.service systemctl start mysqld.service systemctl start mysqld mysql mysql > quit.......... #Securing MySQL server deployment mysql_secure_installation #to use mysql now mysql -u root -p

Comments Off on How to install MySQL on CentOS

How to Dockerize Your Django Project with MySQL Database Using Docker Desktop

Install Docker Desktop.Prepare your Django project (create if necessary). Create a Dockerfile to define the Docker environment. Create a docker-compose.yml file to define the services. Update Django settings to connect…

Comments Off on How to Dockerize Your Django Project with MySQL Database Using Docker Desktop