Merge pull request #219 from dokku/7470-name-argument

docs: ensure --name flag is used in installation docs
This commit is contained in:
Jose Diaz-Gonzalez
2025-03-09 06:05:31 -05:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -110,7 +110,7 @@ def installation_section(service, dokku_version):
"", "",
"```shell", "```shell",
f"# on {dokku_version}", 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}",
"```", "```",
] ]
) )