How to check whether a website link has your URL backlink or not - NodeJs implementation
Introduction I got my seo backlink work done from a freelancer. It was like 300…
March 03, 2018
I have been using drupal 7 from a long time, and setting up a dev environment always felt bit tricky. Thanks to docker, life becomes easier now.
In this post, I will show how I setup my drupal 7 environment from my production environment. And, do any development work.
And, I have taken backup from mariadb running. I will use this backup in next steps.
Also, you can set a custom password for your database as well. ReplaceMY_MYSQL_PASSWORD with the desired password.
Till now, I have not imported database yet.
It should start three container. You can see these three by running docker ps command.
These steps you have to do first time only.
Now, open localhost:8084, where we have configured phpmyadmin to open up.
All of the above steps needs to be done only once. Every time, you want to start your stack, you need to run following command:
docker-compose up -d
And, to stop stack:
docker-compose down
Note, by stopping stack. All of your drupal file changes, database changes, theming changes will remain. Since, we have passed the local disk paths.
Everytime, you start the stack, you will get all the changes from last time.
Enjoy.
Introduction I got my seo backlink work done from a freelancer. It was like 300…
Introduction Lets assume we have a csv something similar to following: Python…
I was trying to install mongo extension with pecl. It gave me error: Then, I…
Introduction In this guide, We will learn about branching, handling conflict…
Introduction In most of cases, you are not pulling images from docker hub public…
You have drupal 7 image from docker hub, and want to connect tomongo db via php…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…