#! /usr/bin/bash

echo "pulling image ${1}"
docker pull ${1}

echo "removing container ${2}"
docker rm -f ${2}

