From 12c794d68cd96dc52fa97c7116dec8b3fa1aeacd Mon Sep 17 00:00:00 2001 From: Matt Rhoads Date: Thu, 11 Mar 2021 09:10:03 -0600 Subject: [PATCH] Fixed typo (#12359) Changed database reference from MongoDB to MySQL --- language/python/develop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/language/python/develop.md b/language/python/develop.md index 0797cfa804..8e69c30781 100644 --- a/language/python/develop.md +++ b/language/python/develop.md @@ -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. Let’s 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. -Let’s create our volumes now. We’ll create one for the data and one for configuration of MongoDB. +Let’s create our volumes now. We’ll create one for the data and one for configuration of MySQL. ```shell $ docker volume create mysql