Fixed typo (#12359)

Changed database reference from MongoDB to MySQL
This commit is contained in:
Matt Rhoads 2021-03-11 09:10:03 -06:00 committed by GitHub
parent 1d39082fa8
commit 12c794d68c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ Instead of downloading MySQL, installing, configuring, and then running the MySQ
Before we run MySQL in a container, we'll create a couple of volumes that Docker can manage to store our persistent data and configuration. Lets use the managed volumes feature that Docker provides instead of using bind mounts. You can read all about [Using volumes](../../storage/volumes.md) in our documentation.
Lets create our volumes now. Well create one for the data and one for configuration of MongoDB.
Lets create our volumes now. Well create one for the data and one for configuration of MySQL.
```shell
$ docker volume create mysql