From 936fcb5931da4f2f44db0c41ee9928bbf54d4874 Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Mon, 28 Apr 2025 23:07:50 -0400 Subject: [PATCH] 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 8bc2a95..21e29fb 100644 --- a/README.md +++ b/README.md @@ -359,7 +359,7 @@ Expose the service on the service's normal ports, allowing access to it from the dokku postgres:expose lollipop 5432 ``` -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 postgres:expose lollipop 127.0.0.1:5432 @@ -780,7 +780,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 postgres: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