docs: ensure --name flag is used in installation docs

Closes dokku/dokku#7470
This commit is contained in:
Jose Diaz-Gonzalez
2025-03-09 07:03:59 -04:00
parent 4ddf27d340
commit 7d59d4ee36
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ Official mysql plugin for dokku. Currently defaults to installing [mysql 9.2.0](
```shell
# on 0.19.x+
sudo dokku plugin:install https://github.com/dokku/dokku-mysql.git mysql
sudo dokku plugin:install https://github.com/dokku/dokku-mysql.git --name mysql
```
## Commands

View File

@@ -110,7 +110,7 @@ def installation_section(service, dokku_version):
"",
"```shell",
f"# on {dokku_version}",
f"sudo dokku plugin:install https://github.com/dokku/dokku-{service}.git {service}",
f"sudo dokku plugin:install https://github.com/dokku/dokku-{service}.git --name {service}",
"```",
]
)