June 2016
Beginner
456 pages
9h 31m
English
In this recipe, we will learn to use a Docker network to set up a WordPress server. We will create two containers, one for MySQL and the other for WordPress. Additionally, we will set up a private network for both MySQL and WordPress.
Let's start by creating a separate network for WordPress and the MySQL containers:
$ docker network create wpnet
docker network ls:
$ docker network ls

docker network inspect command:
$ docker network ...Read now
Unlock full access