All checks were successful
Test and Publish Templates / test-and-publish (push) Successful in 8s
12 lines
224 B
Bash
Executable File
12 lines
224 B
Bash
Executable File
#!/bin/bash
|
|
# shellcheck disable=SC1091
|
|
source "${AGENT_PATH}/common.sh"
|
|
|
|
_check_required_env_vars "CONTAINER_NAME"
|
|
|
|
echo "Stopping ${CONTAINER_NAME}..."
|
|
|
|
_stop_container "$CONTAINER_NAME"
|
|
|
|
echo "Stopped ${CONTAINER_NAME}."
|