#!/bin/bash

## Runs the Docker image produced by `build-docker`, exposing an HTTP port.
## Requires docker

set -e
dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
project_dir=${dir}/..
cd $project_dir

docker run -m 4g -P kyleu/dbui
