Skip to content

Commit 1dd0ae1

Browse files
Fix typo (#298)
Update quickstart-docker.md
1 parent f06468d commit 1dd0ae1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/quickstart-docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ To use the "Docker run" command, specify the name or ID of the image you want to
2121
| `-p 3306:3306` |Maps the container's MySQLport (3306) tothe same port yourhost, enabling external access.|
2222
| `--name psmysql` | Provides a meaningful name to the container. If you do not use this option, Docker adds a random name. |
2323
| `-e MYSQL_ROOT_PASSWORD=secret` | Adds an environmental variable and changes the password from the default password. |
24-
| `--v myvol:/var/lib/mysql` | Mounts a host directory (myvol) as the container's data voluem, ensuring persistent storage for the database between container lifecycles. |
24+
| `--v myvol:/var/lib/mysql` | Mounts a host directory (myvol) as the container's data volume, ensuring persistent storage for the database between container lifecycles. |
2525
| `percona/percona-server:8.0.34` | The image with the tag (8.0.34) to specify a specific release. |
2626

2727
You must provide at least one environment variable to access the database, such as `MYSQL_ROOT_PASSWORD`, `MYSQL_DATABASE`, `MYSQL_USER`, and `MYSQL_PASSWORD` or the instance refuses to initialize.

0 commit comments

Comments
 (0)