diff --git a/pm-task b/pm-task index 66c2210..7c3444e 100755 --- a/pm-task +++ b/pm-task @@ -135,8 +135,7 @@ show_menu() { # Function to restart containers restart_containers() { - echo "Restarting containers in $WORKSPACE..." - cd "$WORKSPACE" || return 1 + echo "Restarting containers..." check_compose_file || return 1 @@ -154,8 +153,7 @@ restart_containers() { # Function to start containers start_containers() { - echo "Starting containers in $WORKSPACE..." - cd "$WORKSPACE" || return 1 + echo "Starting containers..." check_compose_file || return 1 @@ -166,8 +164,7 @@ start_containers() { # Function to stop containers stop_containers() { - echo "Stopping containers in $WORKSPACE..." - cd "$WORKSPACE" || return 1 + echo "Stopping containers..." check_compose_file || return 1 @@ -222,17 +219,17 @@ main() { if [ "$task" = "--help" ]; then echo "Usage: $0 [task]" echo "Tasks:" - echo " (none) - Show menu and list container projects" - echo " restart - Restart container(s)" - echo " start/up - Start container(s)" - echo " stop/down - Stop container(s)" - echo " ps - Watch running containers" - echo " stats - Container statistics" - echo " logs/log - Follow container logs" - echo " sh/bash/shell - Exec into container bash shell" - echo " build/rebuild - Build containers and reload nginx" - echo " reload - Reload nginx service" - echo " upgrade - Pull latest images and upgrade containers" + echo " (none) - Show menu and list container projects" + echo " restart - Restart container(s)" + echo " start/up - Start container(s)" + echo " stop/down - Stop container(s)" + echo " ps - Watch running containers" + echo " stats - Container statistics" + echo " logs/log - Follow container logs" + echo " sh/bash/shell - Exec into container bash shell" + echo " build/rebuild - Build containers and reload nginx" + echo " reload - Reload nginx service" + echo " upgrade - Pull latest images and upgrade containers" return 0 fi diff --git a/pm-task-ash b/pm-task-ash index 2a203f3..84f5ced 100644 --- a/pm-task-ash +++ b/pm-task-ash @@ -158,8 +158,7 @@ show_menu() { # Function to restart containers restart_containers() { - echo "Restarting containers in $WORKSPACE..." - cd "$WORKSPACE" || return 1 + echo "Restarting containers..." check_compose_file || return 1 @@ -177,8 +176,7 @@ restart_containers() { # Function to start containers start_containers() { - echo "Starting containers in $WORKSPACE..." - cd "$WORKSPACE" || return 1 + echo "Starting containers..." check_compose_file || return 1 @@ -189,8 +187,7 @@ start_containers() { # Function to stop containers stop_containers() { - echo "Stopping containers in $WORKSPACE..." - cd "$WORKSPACE" || return 1 + echo "Stopping containers..." check_compose_file || return 1 @@ -245,17 +242,17 @@ main() { if [ "$task" = "--help" ]; then echo "Usage: $0 [task]" echo "Tasks:" - echo " (none) - Show menu and list container projects" - echo " restart - Restart container(s)" - echo " start/up - Start container(s)" - echo " stop/down - Stop container(s)" - echo " ps - Watch running containers" - echo " stats - Container statistics" - echo " logs/log - Follow container logs" - echo " sh/bash/shell - Exec into container bash shell" - echo " build/rebuild - Build containers and reload nginx" - echo " reload - Reload nginx service" - echo " upgrade - Pull latest images and upgrade containers" + echo " (none) - Show menu and list container projects" + echo " restart - Restart container(s)" + echo " start/up - Start container(s)" + echo " stop/down - Stop container(s)" + echo " ps - Watch running containers" + echo " stats - Container statistics" + echo " logs/log - Follow container logs" + echo " sh/bash/shell - Exec into container bash shell" + echo " build/rebuild - Build containers and reload nginx" + echo " reload - Reload nginx service" + echo " upgrade - Pull latest images and upgrade containers" exit 0 fi