Hello Word! A Simple two line command build WordPress.

If you want build myself web blogger need a lot about developer & Soft skill. but now we have a powerful tools what can we easily build wordpress website.Juse need two line command with vps.

First, you need buy a Linux based VPS web hosting service (VPS) form online service store. like Amazon Web Services (AWS) / Microsoft Azure etc.

Second, ssh on you server user this command.

//install docker
sudo yum install docker-io
//start docker
sudo service docker start

//install mysql 
docker run --name mysql_1 -e MYSQL_ROOT_PASSWORD=test_test  -d  mysql
//install wordpress
docker run --name wordpress_1 --link mysql_1:mysql -p 80:80 -d wordpress

OK, WordPress just OK!

Docker容器果然是建站利器,以往的配置等全省略了。只需要简单的三行命令即可在主机上建立一个全功能的站点,维护简单方便。

技术的先进性,带来门槛的无比降低。

Hello Word!

Comments

No comments yet. Why don’t you start the discussion?

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注