Kathlene Aglibot

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 »

Difference between Laravel and WordPress

Laravel and WordPress both are different as laravel is a framework, whereas WordPress is a Content management system. To use laravel, it is required to know the object-oriented programming to write the code and develop the web application Basis of comparison between Laravel and WordPress Laravel WordPress Definition It is an open-source PHP web framework. It …

Difference between Laravel and WordPress 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 »

How to Install WordPress on Docker Container in Ubuntu 20.04

In order to install WordPress in a docker container, you must have docker and docker compose installed in your Ubuntu. If you already have docker and docker compose, you can now follow these steps to install WordPress in a docker container. Step1: Create a new directory for WordPress: $ mkdir ~/wordpressdocker/ if it is saved …

How to Install WordPress on Docker Container in Ubuntu 20.04 Read More »

What is the Difference between Host only, NAT, Bridged Networking in Virtual Machine Box

Virtual machines communicate with the network and there are three modes of virtual machine network connection: bridged connection, NAT and a host only. Host-Only: Host-only only permits network operations with the Host OS. The VM will be assigned one IP, but it’s only accessible by the box VM is running on. No other computers can …

What is the Difference between Host only, NAT, Bridged Networking in Virtual Machine Box Read More »

How to Deploy Containerized Laravel Application from Repository to Ubuntu Server

In this blog, it will show us how to deploy containerized Laravel application in ubuntu by cloning it by its Github repository. Having a github repository of a containerized application is an advantage as we don’t need to make it from scratch. In my case, I cloned a containerized application from a private repository. Here …

How to Deploy Containerized Laravel Application from Repository to Ubuntu Server Read More »