2019-05-21 21:33:25 -07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
2019-10-14 13:13:41 -07:00
|
|
|
docker build --tag borgmatic-docs --build-arg ENVIRONMENT=dev --file docs/Dockerfile .
|
2019-06-22 22:04:56 -07:00
|
|
|
echo
|
|
|
|
echo "You can view dev docs at http://localhost:8080"
|
|
|
|
echo
|
2019-05-21 21:33:25 -07:00
|
|
|
docker run --interactive --tty --publish 8080:80 --rm borgmatic-docs
|