From 56b886cd62d35cc73fd17b5d5fc86971fdc8367d Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 28 Apr 2025 23:07:49 -0400 Subject: [PATCH 1/2] docs: correct typo in generated readme --- README.md | 4 ++-- subcommands/expose | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 488065a..7ac2a90 100644 --- a/README.md +++ b/README.md @@ -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 ``` -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 dokku mongo:expose lollipop 127.0.0.1:27017 27018 27019 28017 @@ -730,7 +730,7 @@ flags: Schedule a backup: -> 'schedule' is a crontab expression, eg. "0 3 * * *" for each day at 3am +> 'schedule' is a crontab expression, eg. "0 3 ** *" for each day at 3am ```shell dokku mongo:backup-schedule lollipop "0 3 * * *" my-s3-bucket diff --git a/subcommands/expose b/subcommands/expose index 1e6b081..ab541d6 100755 --- a/subcommands/expose +++ b/subcommands/expose @@ -8,7 +8,7 @@ source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/functions" 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 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[@]} #A service, service to run command against #A ports, a list of ports to run against From ccdbe3ce4102efc65f59a5a056455d4e497ae7b1 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 28 Apr 2025 23:41:15 -0400 Subject: [PATCH 2/2] docs: regenerate readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7ac2a90..7bc3e7f 100644 --- a/README.md +++ b/README.md @@ -730,7 +730,7 @@ flags: Schedule a backup: -> 'schedule' is a crontab expression, eg. "0 3 ** *" for each day at 3am +> 'schedule' is a crontab expression, eg. "0 3 * * *" for each day at 3am ```shell dokku mongo:backup-schedule lollipop "0 3 * * *" my-s3-bucket