DevOps, Docker, mysql, PHP
Setting up MySQL docker container with phpMyAdmin. Spinning MySQL docker container On WIndows10. Just make sure to change “SYMFONY” to your actual Windows username.MySQL database should be saved in “downloads” directory. docker run –name...
DevOps, Docker, IT Help Desk
You can get container IP by inspecting the container ID or tag name. # docker inspect <containerIDorName> | grep \”IPAddress\”: docker inspect test4 | grep \”IPAddress\”: You can also get container ID by entering the container with exec...
DevOps, Symfony, Symfony 4, Symfony 5, WebDevelopment
Install scoop Installation under the administrator console has been disabled by default for security considerations. If you know what you are doing and want to install Scoop as administrator. Please download the installer and manually execute it with...
DevOps, Kubernetes, NginX, WebDevelopment
Prerequisites: Install Minikube (or use personal Cloud Cluster, for example AWS or Google Cloud)Install Kubectl * If you need help, see this Kubernetes setup tutorial Table of contents In this blog post, we will create a basic starter express application which will...
DevOps, Docker, Kubernetes, WebDevelopment
If you need to read more about Kubernetes basics and local dev env setup, read this first Getting started with Kubernetes. Clean up manual configuration of services and deployments using kubectl delete all –all. Now check for pods and services presents using...
DevOps, Docker, Kubernetes, WebDevelopment
Create a folder named like k8s-project-name (stands for Kubernetes) in a directory of your choice. I will create it with Laragon www folders in C:\laragon\www\k8s-node-express. Now lets init node.js app using npm init -y. Now lets install our app basic packages...