We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8de11d commit fb4017fCopy full SHA for fb4017f
start_container.sh
@@ -8,5 +8,6 @@ set -uo pipefail
8
# Import environment variables from .env
9
set -o allexport && source .env && set +o allexport
10
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"
+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."
13
docker run -p 8123:8123 "$DOCKER_IMAGE_NAME":"$DOCKER_IMAGE_TAG"
0 commit comments