WordPress Installation in AWS EC2 Instance With Docker Container
7K views
Aug 5, 2022
This video is going to present the steps how to install WordPress into AWS EC2 Instance's Docker Container. It use Amazon Linux image and running on Free Tier. My blog www.51sec.org is running in it. Some related commands: uname -a sudo yum update -y sudo yum update sudo yum install docker -y sudo service docker start sudo usermod -a -G docker ec2-user sudo systemctl enable docker.service # Enable the service sudo systemctl start docker # Start the Docker daemon. sudo docker images # Show local images sudo docker pull tutum/wordpress # pull the image sudo docker run -d -p 80:80 -p 443:443 tutum/wordpress # Run container sudo curl http://localhost/ # Test container sudo docker stop # Stop container
#Computers & Electronics
# Internet & Telecom