forked from borgmatic-collective/borgmatic
10 lines
241 B
Bash
Executable File
10 lines
241 B
Bash
Executable File
#!/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
|