Compare commits

...

3 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
60a38d9c14 Release 1.38.3
Some checks failed
tagged-release / tagged-release (push) Has been cancelled
2025-03-09 07:11:54 -04:00
Jose Diaz-Gonzalez
23d30b8d68 Merge pull request #219 from dokku/7470-name-argument
docs: ensure --name flag is used in installation docs
2025-03-09 06:05:31 -05:00
Jose Diaz-Gonzalez
544b5dc18b docs: ensure --name flag is used in installation docs
Closes dokku/dokku#7470
2025-03-09 07:03:59 -04:00
3 changed files with 3 additions and 3 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}",
"```", "```",
] ]
) )

View File

@@ -1,4 +1,4 @@
[plugin] [plugin]
description = "dokku mongo service plugin" description = "dokku mongo service plugin"
version = "1.38.2" version = "1.38.3"
[plugin.config] [plugin.config]