zgrab2/integration_tests/smtp/setup.sh

25 lines
833 B
Bash
Executable File

#!/usr/bin/env bash
echo "smtp/setup: Tests setup for smtp"
CONTAINER_TAG="zgrab_smtp"
CONTAINER_NAME="zgrab_smtp"
# If the container is already running, use it.
if docker ps --filter "name=$CONTAINER_NAME" | grep -q $CONTAINER_NAME; then
echo "smtp/setup: Container $CONTAINER_NAME already running -- nothing to setup"
exit 0
fi
# If it is not running, try launching it -- on success, use that.
echo "smtp/setup: Trying to launch $CONTAINER_NAME..."
if ! docker run --rm --name $CONTAINER_NAME -td $CONTAINER_TAG; then
echo "smtp/setup: Building docker image $CONTAINER_TAG..."
# If it fails, build it from ./container/Dockerfile
docker build -t $CONTAINER_TAG ./container
# Try again
echo "smtp/setup: Launching $CONTAINER_NAME..."
docker run --rm --name $CONTAINER_NAME -td $CONTAINER_TAG
fi