Hey Folks, in this tutorial we will show you how to install WordPress CMS through Docker. The only reason to install wordpress via docker is to reduce efforts. In this tutorial we will show two shortest ways through which you can install WordPress CMS in minimum time.
Letโs take a look ๐ !!
It is not that you should have knowledge of docker and you will get familiar with it after using it two or three times. To install wordpress CMS, we have to install the latest version of docker.io by using the apt command.
apt-get install docker.io
Docker is disabled by default, so we have to enable it using both of these commands.
systemctl start docker
systemctl enable docker
Now we will download a new MariaDB images from docker registry using the docker pull command in the system.
docker pull mariadb
The time has come to download the wordpress CMS from the docker registry using the below command.
docker pull wordpress:latest
You can view all available or downloaded images in the docker using the following command.
docker images
mkdir ~/wordpress
mkdir -p ~/wordpress/database
mkdir -p ~/wordpress/html
Now we will create new MariaDB container along with database, user and password of mysql database server. You can change the database name and other configuration accordingly. After executing the command we check the availability of containers using the โdocker psโ command.
docker run -e MYSQL_ROOT_PASSWORD=1234 -e MYSQL_USER=wpuser -e MYSQL_PASSWORD=wpuser@ -e MYSQL_DATABASE=wordpress_db -v /root/wordpress/database:/var/lib/mysql --name wordpressdb -d mariadb
Connect to the MySQL database server using the below command to check connectivity or manage database.
mysql -u wpuser -h 172.17.0.2 -p
TYPE PASSWORD: wpuser@
show databases;
Now we will start another new container for wordpress from the images by using the following command. Keep add the same database, user and password you created earlier.
docker run -e WORDPRESS_DB_USER=wpuser -e WORDPRESS_DB_PASSWORD=wpuser@ -e WORDPRESS_DB_NAME=wordpress_db -p 8081:80 -v /root/wordpress/html:/var/www/html --link wordpressdb:mysql --name wpcontainer -d wordpress
Alright ๐ !! If the command is executed successfully, you can use the โdocker psโ command to locate the WordPress web page. Copy the highlighted location and paste it on the browser.
Usage ๐ !! http://<localhost>:8081
After browsing the location, you have to select the language.
Great ๐ !! As you can see we did not need to enter database credentials as we had given earlier. After selecting the language we come to the following web page where we create administrative credentials.
Done ๐ !! Looks like everything is done. Letโs hit enter on the login button and access the admin panel.
Complete ๐ !! Now you can see that we have got the admin panel of WordPress CMS from where we can create our website and publish any content.
Letโs try to reduce the efforts. To install wordpress using docker in this method, we have to set up another dependencies of the docker using the following command.
apt install docker.io docker-compose
Now create a file as per your own with .YML extension.
nano docker-compose.yml
Paste the entire code below into the .yml file and save the configuration.
version: '3.3'
services:
db:
image: mysql:5.7
volumes:
- db_data:/var/lib/mysql
restart: always
environment:
MYSQL_ROOT_PASSWORD: 1234
MYSQL_DATABASE: wordpress_db
MYSQL_USER: wpuser
MYSQL_PASSWORD: wpuser@
wordpress:
depends_on:
- db
image: wordpress:latest
ports:
- "8000:80"
restart: always
environment:
WORDPRESS_DB_HOST: db:3306
WORDPRESS_DB_USER: wpuser
WORDPRESS_DB_PASSWORD: wpuser@
WORDPRESS_DB_NAME: wordpress_db
volumes:
db_data: {}
Source Code : https://docs.docker.com/compose/wordpress/
After executing the given command, all the services inside the .yml file will start along the given credential.
docker-compose up -d
Hmm ๐ !! You can see that all the necessary services such as mysql and others are started automatically. Browse the highlighted location.
docker ps
All you have to do is enter the username and password to secure the admin panel.
Wondering ๐ !! And thatโs it, we have successfully installed WordPress CMS on our localhost web server using docker.
Tags : WordPress installation with docker | how to install wordpress with docker| install wordpress docker | install wordpress with docker compose |install wordpress docker | wordpress installation |
A keen learner and passionate IT student. He has done Web designing, CCNA, RedHat, Ethical hacking, Network & web penetration testing. Currently, he is completing his graduation and learning about Red teaming, CTF challenges & Blue teaming.
The gau (Get All URLs) tool is a versatile open-source utility that collects URLs from…
Jsluice++ is a Burp Suite extension designed for passive and active scanning of JavaScript traffic…
Hey Folks :) !! In this tutorial, we will describe some of the techniques commonly…
Hey Folks :) !! In this article, we present the "Termux Cheat Sheet for Hackers"…
Amid the rapid advancement of technology, the significance of human involvement in cybersecurity frequently goes…
Hey Folks, we are back today after such a long break, but don't worry we…
This website uses cookies.