Update develop.md

data volume name does not match to the following command
This commit is contained in:
Makoto Oda 2021-06-04 00:12:18 +09:00 committed by GitHub
parent 8c3047c922
commit e26135b7d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ Before we run MySQL in a container, we'll create a couple of volumes that Docker
Lets create our volumes now. Well create one for the data and one for configuration of MySQL.
```console
$ docker volume create mysql
$ docker volume create mysql_data
$ docker volume create mysql_config
```