Merge pull request #225 from dokku/fix-typo

docs: fix typo in generated docs
This commit is contained in:
Jose Diaz-Gonzalez
2025-04-28 23:42:25 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -346,7 +346,7 @@ Expose the service on the service's normal ports, allowing access to it from the
dokku mongo:expose lollipop 27017 27018 27019 28017 dokku mongo:expose lollipop 27017 27018 27019 28017
``` ```
Expose the service on the service's normal ports, with the first on a specified ip adddress (127.0.0.1): Expose the service on the service's normal ports, with the first on a specified ip address (127.0.0.1):
```shell ```shell
dokku mongo:expose lollipop 127.0.0.1:27017 27018 27019 28017 dokku mongo:expose lollipop 127.0.0.1:27017 27018 27019 28017

View File

@@ -8,7 +8,7 @@ source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/functions"
service-expose-cmd() { service-expose-cmd() {
#E expose the service on the service's normal ports, allowing access to it from the public interface (0.0.0.0) #E expose the service on the service's normal ports, allowing access to it from the public interface (0.0.0.0)
#E dokku $PLUGIN_COMMAND_PREFIX:expose lollipop ${PLUGIN_DATASTORE_PORTS[@]} #E dokku $PLUGIN_COMMAND_PREFIX:expose lollipop ${PLUGIN_DATASTORE_PORTS[@]}
#E expose the service on the service's normal ports, with the first on a specified ip adddress (127.0.0.1) #E expose the service on the service's normal ports, with the first on a specified ip address (127.0.0.1)
#E dokku $PLUGIN_COMMAND_PREFIX:expose lollipop 127.0.0.1:${PLUGIN_DATASTORE_PORTS[@]} #E dokku $PLUGIN_COMMAND_PREFIX:expose lollipop 127.0.0.1:${PLUGIN_DATASTORE_PORTS[@]}
#A service, service to run command against #A service, service to run command against
#A ports, a list of ports to run against #A ports, a list of ports to run against