Check if the container is running, and if not then print a meaningful error message.

This commit is contained in:
Pagan Gazzard 2014-12-08 18:00:01 +00:00 committed by Pablo Carranza Vélez
parent 58b9040a36
commit b1b039cdd1

View File

@ -1 +1,7 @@
nsenter --target $(docker inspect --format '{{.State.Pid}}' $1) --mount --uts --ipc --net --pid bash
#!/bin/bash
CONTAINER_PID=$(docker inspect --format '{{if .State.Running}}{{.State.Pid}}{{end}}' $1)
if [ -z $CONTAINER_PID ]; then
read -p "Application must be running for a terminal to be started."
else
nsenter --target $CONTAINER_PID --mount --uts --ipc --net --pid bash
fi