dev-docs 353 B

12345678910
  1. #!/bin/bash
  2. set -e
  3. docker build --tag borgmatic-docs --file docs/Dockerfile .
  4. echo
  5. echo "You can view dev docs at http://localhost:8080"
  6. echo "Note that links within these docs will go to the online docs, so you will need to fiddle with URLs manually to stay in the dev docs."
  7. echo
  8. docker run --interactive --tty --publish 8080:80 --rm borgmatic-docs