Author name: Kathlene Aglibot

what is the difference between Docker and Docker Compose

The difference between Docker and Docker-compose is simple: docker commands are focused on only one container (or image) at once while docker-compose manage several containers docker. An example of difference of docker and docker compose is when you run these commands:  docker ps (-a)  In Docker, docker ps displays every docker instance currently running in your

what is the difference between Docker and Docker Compose Read More »

How to Install Docker in Ubuntu 20.04

Docker is an open-source containerization platform that allows you to quickly build, test, and deploy applications as portable containers that can run virtually anywhere. Installing Docker in Ubuntu is fairly straightforward. We’ll enable the Docker repository, import the repository GPG key, and install the package. Just follow the steps below: Step 1: Update the packages

How to Install Docker in Ubuntu 20.04 Read More »

How to Solve Error: the stream or file “/var/www/html/storage/logs/laravel.log” could not be opened in append mode: failed to open stream: permission denied

If you encountered an error that says “Could Not Be Opened In Append Mode: Failed To Open Stream: Permission Denied” such us the the image below, you can solve this by simply changing the permission access of certain file. Change the access permission of the docker.sock file (docker socket) to be able to connect to

How to Solve Error: the stream or file “/var/www/html/storage/logs/laravel.log” could not be opened in append mode: failed to open stream: permission denied Read More »

How to install Laravel Application in Docker Container

Step 1: Download Laravel to your local machine If you don’t have Laravel in your local machine, install it first by cloning it by git command. git clone https://github.com/laravel/laravel.git laravelapp Step 2 : Create Docker Compose File After installing Laravel in your local machine, proceed to your Laravel project directory by typing: $ cd laravelapp

How to install Laravel Application in Docker Container Read More »