Newer
Older
docker-doom / build-docker-doom.bash
@Matt McCarragher Matt McCarragher on 10 Nov 2018 246 bytes added builder options
#!/bin/bash

function menu
{
  
}

if [ "`command -v docker`" = '' ]; then
  echo "You have to install docker before you can build the container."
  exit 1
elif [ "$#" -gt 1 ]; then
   docker build . -t $1
else
  docker build . -t docker-doom
fi