Super simple implementation of Docker to build a personal blog system

Super simple implementation of Docker to build a personal blog system

Install Docker

Update the yum package to the latest version: sudo yum update
Install the required packages: sudo yum install -y yum-utils device-mapper-persistent-data lvm2
Set the yum source to Alibaba Cloud, otherwise it will be very slow: sudo yum-config-manager --add-repo http://mirrors.aliyun.com/docker-ce/linux/centos/docker-ce.repo
sudo yum install docker-ce
Check the docker version after installation: docker -v
Set up a domestic mirror, ustc is a veteran Linux mirror service provider: vi /etc/docker/daemon.json
Enter the following content in the file:

{
"registry-mirrors": ["https://docker.mirrors.ustc.edu.cn"]
}

Start Docker: systemctl start docker
Check the docker status: systemctl status docker
Start at boot: systemctl enable docker

Install the image

The data of the blog system is recorded in the database, which means it depends on the database, so you need to install the database first: docker run --name db --env MYSQL_ROOT_PASSWORD=example -d mariadb
db is the name of the docker container, -d means starting it in daemon mode (running in the background), mariadb is a database of mysql, docker will first search for the mariadb image locally, if it is not found, it will automatically download it from the warehouse

View the docker container status: docker ps -a

Install the wordpress blog system: docker run --name MyWordPress --link db:mysql -p 8080:80 -d wordpress
Use --link db:mysql parameter to establish a connection between WordPress and the database. Use -p 8080:80 parameter to map port 80 of the original service to port 8080 of the host machine.

insert image description here

View the docker container status: docker ps -a

insert image description here

Visit site

Visit the browser: http://192.168.2.9:8080
The host machine's IP is 192.168.2.9 , and the response is as follows:

insert image description here

After some simple settings, our blog system is set up

insert image description here

This is the end of this article about how to use Docker to build a personal blog system. For more information about building a blog system with Docker, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Example of using Docker to build an ELK log system
  • How to build an elk system using docker compose
  • How to build a docker local image warehouse under centos7 system
  • Using Docker to build a lamp environment on Mac

<<:  HTML table tag tutorial (23): row border color attribute BORDERCOLORDARK

>>:  How to use VUE to call Ali Iconfont library online

Recommend

How to solve the problem of clicking tomcat9.exe crashing

A reader contacted me and asked why there were pr...

How to find and delete duplicate records in MySQL

Hello everyone, I am Tony, a teacher who only tal...

Descending Index in MySQL 8.0

Preface I believe everyone knows that indexes are...

Best Practices for MySQL Upgrades

MySQL 5.7 adds many new features, such as: Online...

Solution to mysql error when modifying sql_mode

Table of contents A murder caused by ERR 1067 The...

Docker image access to local elasticsearch port operation

Using the image service deployed by docker stack,...

MySQL pessimistic locking and optimistic locking implementation

Table of contents Preface Actual Combat 1. No loc...

VMware Workstation installation Linux (Ubuntu) system

For those who don't know how to install the s...

MySQL database operation and maintenance data recovery method

The previous three articles introduced common bac...

How to insert 10 million records into a MySQL database table in 88 seconds

The database I use is MySQL database version 5.7 ...

Two-hour introductory Docker tutorial

Table of contents 1.0 Introduction 2.0 Docker Ins...

Getting Started Guide to Converting Vue to React

Table of contents design Component Communication ...

JavaScript data structure bidirectional linked list

A singly linked list can only be traversed from t...

Use Vue3+Vant component to implement App search history function (sample code)

I am currently developing a new app project. This...