You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/quickstart-docker.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ To use the "Docker run" command, specify the name or ID of the image you want to
21
21
|`-p 3306:3306`|Maps the container's MySQLport (3306) tothe same port yourhost, enabling external access.|
22
22
|`--name psmysql`| Provides a meaningful name to the container. If you do not use this option, Docker adds a random name. |
23
23
|`-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. |
25
25
|`percona/percona-server:8.0.34`| The image with the tag (8.0.34) to specify a specific release. |
26
26
27
27
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