Skip to content

Commit fb4017f

Browse files
committed
Print how to stop the container
1 parent d8de11d commit fb4017f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

start_container.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ set -uo pipefail
88
# Import environment variables from .env
99
set -o allexport && source .env && set +o allexport
1010
echo "Starting container for image '$DOCKER_IMAGE_NAME:$DOCKER_IMAGE_TAG', exposing port 8123/tcp"
11-
echo "Run 'curl http://localhost:8123/status' to send a test request to the containerized app"
11+
echo "- Run 'curl http://localhost:8123/status' to send a test request to the containerized app."
12+
echo "- Enter Ctrl-C to stop the container."
1213
docker run -p 8123:8123 "$DOCKER_IMAGE_NAME":"$DOCKER_IMAGE_TAG"

0 commit comments

Comments
 (0)