MHMohammad Hassaan Zareefinmaazmohd313.hashnode.dev路Jun 21, 2023 路 2 min readTomcat installation on EC2 instanceEC2 instance with Java 11 The first thing we need to do is to set up java on the ec2-instance using the command below. sudo yum update sudo amazon-linux-extras install java-openjdk11 -y Install Apache Tomcat Download tomcat packages from https://tom...00
MHMohammad Hassaan Zareefinmaazmohd313.hashnode.dev路Jun 4, 2023 路 4 min readSonarQube setup for attaining the code quality of project using Docker composeSonarQube is a static code analysis tool. It is an open-source and Java-based tool. it collects and analyzes source code, and provides reports checking the code quality of the project. It combines static and dynamic analysis tools and enables quality...00
MHMohammad Hassaan Zareefinmaazmohd313.hashnode.dev路Mar 21, 2023 路 2 min readDocker Volumes and Docker-composeCreating Docker Volume 馃 To create a new Docker volume, you can use the docker volume create command. For example, to create a volume named "myvolume", you would # my volume is the volume name docker volume create myvolume 馃 Once the volume is cre...00
MHMohammad Hassaan Zareefinmaazmohd313.hashnode.dev路Mar 19, 2023 路 2 min readDocker Cheat Sheet馃幆 Process Management # Show all running docker containersdocker ps# Show all docker containersdocker ps-a# Run a containerdocker run <image>:<tag># Run a container and connect to itdocker run -it <image>>:<tag># Run a container in the backgrounddock...00
MHMohammad Hassaan Zareefinmaazmohd313.hashnode.dev路Mar 17, 2023 路 1 min readDocker expose馃幆Create a Security Group (Firewall ) 馃幆Launch EC2 馃幆Connect through MobaXterm/Putty/super Putty 馃幆Install Docker in EC2 馃幆Docker expose Create a Security Group: 路 Create a new security group 路 Inbound rules: ALL TCP and 0.0.0.0/0 路 Outbound rules: A...00