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:04:00 -04:00
parent c6cc9491e2
commit 65e083a34e
2 changed files with 2 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ Official redis plugin for dokku. Currently defaults to installing [redis 7.4.2](
```shell
# on 0.19.x+
sudo dokku plugin:install https://github.com/dokku/dokku-redis.git redis
sudo dokku plugin:install https://github.com/dokku/dokku-redis.git --name redis
```
## 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}",
"```",
]
)