Web Development

How to Deploy Containerized WordPress using Repository in Ubuntu Server

After successfully installing WordPress in a docker container and pushing it in github repository, you can use it in other ubuntu server by following the steps Step 1: Clone Repository using git clone command Go to directory /var/www/html then paste the repository link. Her, I used a private repository and copy pasted it together with […]

How to Deploy Containerized WordPress using Repository in Ubuntu Server Read More »

Setting PHPMyAdmin for Containerized WordPress

Since we are using Mysql in making docker-compose.yml file for dockered WordPress installation , we can add the service phpMyAdmin to access and view the database. Open and edit the docker-compose.yml file and include the following phpMyAdmin service and its environs in your YAML file. $ sudo nano docker-compose.yml Add the following phpMyAdmin service and its environs: Run

Setting PHPMyAdmin for Containerized WordPress Read More »

What to do when wordPress files are not in the project directory

In creating docker-compose.yml file, it is important to take note that everything you set is needs to be correct. This blog is about containerized WordPress where the files is not properly located. You only need to edit the docker-compose.yml file to solve this problem. Step 1: Cut down the running WordPress containers in your WordPress

What to do when wordPress files are not in the project directory Read More »

What is Laravel Sail?

Laravel Sail is a simple command-line interface for working with Laravel’s default Docker environment. Without prior Docker experience, Sail is a wonderful starting point for constructing a Laravel application with PHP, MySQL, and Redis. Additionally, the sail script and the docker-compose.yml file are located at the root of your project. Also, sail script provides a

What is Laravel Sail? Read More »