• General ReviewsTRENDING
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    How to customize dock icons and folders in macOS

    How to customize dock icons and folders in macOS

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Access Dots

    Access Dots – Knowing if an app is filming you without your knowledge

    Fitocracy (iOS)

    Free smartphone apps to keep in shape

    Spotify Lite is finally available on Android

    Spotify Lite is finally available on Android

  • Company ReviewsLOVED
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    How to customize dock icons and folders in macOS

    How to customize dock icons and folders in macOS

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Access Dots

    Access Dots – Knowing if an app is filming you without your knowledge

    Fitocracy (iOS)

    Free smartphone apps to keep in shape

    Spotify Lite is finally available on Android

    Spotify Lite is finally available on Android

  • Service ReviewsTHE VERY BEST
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    This free extension will help you read faster and more concentrated

    This free extension will help you read faster and more concentrated

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Dashlane

    Dashlane – The simple, transparent and super convenient password manager

    Windows 10: the build 18956 is here, what's new on the horizon?

    Windows 10: the build 18956 is here, what’s new on the horizon?

    Windows 10

    Windows 10: tips to improve security

  • Popular ReviewsHOT!
Review of US
  • General ReviewsTRENDING
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    How to customize dock icons and folders in macOS

    How to customize dock icons and folders in macOS

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Access Dots

    Access Dots – Knowing if an app is filming you without your knowledge

    Fitocracy (iOS)

    Free smartphone apps to keep in shape

    Spotify Lite is finally available on Android

    Spotify Lite is finally available on Android

  • Company ReviewsLOVED
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    How to customize dock icons and folders in macOS

    How to customize dock icons and folders in macOS

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Access Dots

    Access Dots – Knowing if an app is filming you without your knowledge

    Fitocracy (iOS)

    Free smartphone apps to keep in shape

    Spotify Lite is finally available on Android

    Spotify Lite is finally available on Android

  • Service ReviewsTHE VERY BEST
    Kicksta reviews

    Kicksta Reviews

    Lift My Social Review

    Lift My Social review

    Hypeplanner reviews

    Hypeplanner reviews

    SocialCaptain Reviews

    SocialCaptain Reviews

    This free extension will help you read faster and more concentrated

    This free extension will help you read faster and more concentrated

    Google Maps

    This is the full dark mode of Google Maps, the application prepares to activate it

    Dashlane

    Dashlane – The simple, transparent and super convenient password manager

    Windows 10: the build 18956 is here, what's new on the horizon?

    Windows 10: the build 18956 is here, what’s new on the horizon?

    Windows 10

    Windows 10: tips to improve security

  • Popular ReviewsHOT!
No Result
View All Result
Review of US
No Result
View All Result
Home Blockchain

Install WordPress on Ubuntu in three simple steps with Docker

in Blockchain, Gaming, Popular Reviews, Smartphones, Technology, Windows
Install WordPress on Ubuntu in three simple steps with Docker
Share on FacebookShare on Twitter

One of the things we have to do after installing Ubuntu 16.04, and more if we come from a clean installation, is reinstall all those programs that we use in our Ubuntu. If you are a web developer you will probably be interested in installing WordPress on your PC. That’s why at Ubunlog we want to teach you how to install WordPress on Ubuntu very easily by following just three steps, Through a tool called docker. We tell you.

Table of Contents

  • What is Docker?
  • Installing Docker and WordPress
    • ReadAlso
    • [Unity] Add desktop display icon in launcher
    • Enable notification area for all applications in Ubuntu 11.04
    • Unity or Gnome Shell? | Ubunlog
    • Try Ubuntu 11.04 Online | Ubunlog

What is Docker?

First and foremost, you need to explain what it is and how it works docker. Well, Docker is a free application that allows us packaging our software projects in what we know as container (containers in English). That way, we can have one Complete File System that contains everything you need (Source code, necessary libraries, system tools …) to be able to run this application on any machine that supports Docker, as if it were a portable application.

Installing Docker and WordPress

Docker has a tool called docker Compose which precisely serves us to be able to manage the containers of a project, so we can start, stop, delete or see their status. To install we only need to run the following command on the terminal:

sudo apt-get install docker-compose

Using Docker to install WordPress

Now that we know what Docker is and have it installed, we can proceed to use it to install WordPress.

ReadAlso

[Unity] Add desktop display icon in launcher

[Unity] Add desktop display icon in launcher

April 20, 2021
Enable notification area for all applications in Ubuntu 11.04

Enable notification area for all applications in Ubuntu 11.04

April 20, 2021
Unity or Gnome Shell?  |  Ubunlog

Unity or Gnome Shell? | Ubunlog

April 19, 2021
Try Ubuntu 11.04 Online |  Ubunlog

Try Ubuntu 11.04 Online | Ubunlog

April 19, 2021
  • The first step is create a directory called, for example, wordpress (I know, it’s very original) in the root directory using the following command:

mkdir ~ / wordpress

  • Then within this directory, we have to create a file called docker-compose.yml, Which we can do by going to the created directory and then creating the desired file, that is, running:

cd wordpress

touch docker-compose.yml

  • the file docker-compose.yml must have the following content:

wordpress:
image: wordpress
links:
– wordpress_db: mysql
ports:
– 8080: 80
volumes:
– ~ / wordpress / wp_html: / var / www / html
wordpress_db:
image: MariaDB
environment:
MYSQL_ROOT_PASSWORD: examplepass
phpmyadmin:
image: corbinu / docker-phpmyadmin
links:
– wordpress_db: mysql
ports:
– 8181: 80
environment:
MYSQL_USERNAME: root
MYSQL_ROOT_PASSWORD: examplepass

NOTE: You can manually copy and paste the contents of the file or, alternatively, copy by running:

find file_content> docker-compose.yml

  • The last step is to start Docker, which we can easily do by running:

its docker-compose start

Now all you have to do is open your browser (Firefox, Chromium or Chrome) and go to localhost: 8080 through the top text box. And that’s it! Easy truth?

As a final summary, we want to remind you of what we have done. First of all, we have Docker installed, A tool that helps us to package a software project in containers so we can easily take it to any system. Then we have created an archive docker-compose.yml with the WordPress settings requiredFinally, start Docker. We hope this post has helped you install WordPress on your Ubuntu and that if you have any questions, leave it to us in the comments section. Until the next 😉

Previous Post

UNAV 0.59 GPS is updated and allows you to zoom in

Next Post

QupZilla: what it is and how to install it on Ubuntu 16.04

Related Posts

[Unity] Add desktop display icon in launcher
Blockchain

[Unity] Add desktop display icon in launcher

April 20, 2021
Enable notification area for all applications in Ubuntu 11.04
Blockchain

Enable notification area for all applications in Ubuntu 11.04

April 20, 2021
Unity or Gnome Shell?  |  Ubunlog
Blockchain

Unity or Gnome Shell? | Ubunlog

April 19, 2021
Try Ubuntu 11.04 Online |  Ubunlog
Blockchain

Try Ubuntu 11.04 Online | Ubunlog

April 19, 2021
4 Conky configurations that you will surely like
Blockchain

4 Conky configurations that you will surely like

April 19, 2021
Get higher screen resolution, with NVIDIA drivers in Ubuntu
Blockchain

Get higher screen resolution, with NVIDIA drivers in Ubuntu

April 18, 2021
Blockchain

QInk, control ink level of our printer in Ubuntu

April 18, 2021
Next Post
QupZilla: what it is and how to install it on Ubuntu 16.04

QupZilla: what it is and how to install it on Ubuntu 16.04

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

You might also like

[Unity] Add desktop display icon in launcher

[Unity] Add desktop display icon in launcher

April 20, 2021
Enable notification area for all applications in Ubuntu 11.04

Enable notification area for all applications in Ubuntu 11.04

April 20, 2021
Unity or Gnome Shell?  |  Ubunlog

Unity or Gnome Shell? | Ubunlog

April 19, 2021
Try Ubuntu 11.04 Online |  Ubunlog

Try Ubuntu 11.04 Online | Ubunlog

April 19, 2021
4 Conky configurations that you will surely like

4 Conky configurations that you will surely like

April 19, 2021
Get higher screen resolution, with NVIDIA drivers in Ubuntu

Get higher screen resolution, with NVIDIA drivers in Ubuntu

April 18, 2021
  • Privacy Policy
  • Cookies Policy
  • Terms and Conditions
Call us: +1 949 662 3421
No Result
View All Result
  • General Reviews
  • Company Reviews
  • Service Reviews
  • Popular Reviews

© 2020 Review of U.S. - Truth matters Stay connetced.

Welcome Back!

Login to your account below

Forgotten Password?

Create New Account!

Fill the forms below to register

All fields are required. Log In

Retrieve your password

Please enter your username or email address to reset your password.

Log In