diff --git a/functions b/functions index 1de927d..323a8d0 100755 --- a/functions +++ b/functions @@ -328,7 +328,7 @@ service_port_unpause() { # shellcheck disable=SC2046 docker run -d --link "$SERVICE_NAME:$PLUGIN_COMMAND_PREFIX" --name "$EXPOSED_NAME" $(docker_ports_options "${PORTS[@]}") --restart always --label dokku=ambassador --label "dokku.ambassador=$PLUGIN_COMMAND_PREFIX" svendowideit/ambassador > /dev/null if [[ "$LOG_FAIL" == "true" ]]; then - dokku_log_info1 "Service $SERVICE exposed on port(s) [container~>host]: $(service_exposed_ports "$SERVICE")" + dokku_log_info1 "Service $SERVICE exposed on port(s) [container->host]: $(service_exposed_ports "$SERVICE")" fi } diff --git a/tests/service_expose.bats b/tests/service_expose.bats index 95c249b..1e928ec 100755 --- a/tests/service_expose.bats +++ b/tests/service_expose.bats @@ -21,10 +21,10 @@ teardown() { @test "($PLUGIN_COMMAND_PREFIX:expose) success when not providing a custom port" { run dokku "$PLUGIN_COMMAND_PREFIX:expose" l - [[ "${lines[*]}" =~ exposed\ on\ port\(s\)\ [[:digit:]]+ ]] + [[ "${lines[*]}" =~ exposed\ on\ port\(s\)\ \[container\-\>host\]\:\ [[:digit:]]+ ]] } @test "($PLUGIN_COMMAND_PREFIX:expose) success when providing a custom port" { run dokku "$PLUGIN_COMMAND_PREFIX:expose" l 4242 - assert_contains "${lines[*]}" "exposed on port(s) [container~>host]: 5432~>4242" + assert_contains "${lines[*]}" "exposed on port(s) [container->host]: 5432->4242" }