dev-docs 241 B

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