c9633bb7b9
The part of trying out scripts involve creating a docker container with ssh and running some projects and functions on it. This change allows to define the docker image name to be used with the docker-* functions.
11 lines
334 B
Bash
Executable File
11 lines
334 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
image_name=${1:-$KICKSTART_DOCKER_IMAGE}
|
|
image_name=${image_name:-moul/sshd}
|
|
|
|
runnig_sshd=$(docker ps -q $image_name)
|
|
[ -z "$runnig_sshd" ] && echo "Docker container not created. Run \`kickstart docker-create\` to get one" && exit 1
|
|
|
|
port=`docker port $runnig_sshd 22 | cut -f 2 -d :`
|
|
exec ssh -p $port root@localhost
|