#!/bin/bash set -e docker build --tag borgmatic-docs --build-arg ENVIRONMENT=dev --file docs/Dockerfile . echo echo "You can view dev docs at http://localhost:8080" echo docker run --interactive --tty --publish 8080:80 --rm borgmatic-docs