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