diff --git a/README.md b/README.md index cc67bd4..7afb589 100644 --- a/README.md +++ b/README.md @@ -262,6 +262,8 @@ dokku postgres:connect Connect to the service via the postgres connection tool: +> NOTE: disconnecting from ssh while running this command may leave zombie processes due to moby/moby#9098 + ```shell dokku postgres:connect lollipop ``` @@ -275,6 +277,8 @@ dokku postgres:enter A bash prompt can be opened against a running service. Filesystem changes will not be saved to disk. +> NOTE: disconnecting from ssh while running this command may leave zombie processes due to moby/moby#9098 + ```shell dokku postgres:enter lollipop ``` diff --git a/subcommands/connect b/subcommands/connect index 8f2a0d7..37d05a8 100755 --- a/subcommands/connect +++ b/subcommands/connect @@ -7,6 +7,7 @@ source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/functions" service-connect-cmd() { #E connect to the service via the $PLUGIN_COMMAND_PREFIX connection tool + #E > NOTE: disconnecting from ssh while running this command may leave zombie processes due to moby/moby#9098 #E dokku $PLUGIN_COMMAND_PREFIX:connect lollipop #A service, service to run command against declare desc="connect to the service via the $PLUGIN_COMMAND_PREFIX connection tool" diff --git a/subcommands/enter b/subcommands/enter index bfe9f50..4af6cfc 100755 --- a/subcommands/enter +++ b/subcommands/enter @@ -8,6 +8,7 @@ source "$(dirname "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)")/functions" service-enter-cmd() { #E a bash prompt can be opened against a running service. #E filesystem changes will not be saved to disk. + #E > NOTE: disconnecting from ssh while running this command may leave zombie processes due to moby/moby#9098 #E dokku $PLUGIN_COMMAND_PREFIX:enter lollipop #E you may also run a command directly against the service. #E filesystem changes will not be saved to disk.