#!/bin/sh

set -eux

CONTAINER_NAME="phc/storage"

git pull
docker build -t "$CONTAINER_NAME" .
docker run --rm  -d -p 4000:4000 "$CONTAINER_NAME"
