7 lines
149 B
Text
7 lines
149 B
Text
|
#!/bin/bash
|
||
|
|
||
|
set -e
|
||
|
|
||
|
docker build --tag borgmatic-docs --file docs/Dockerfile .
|
||
|
docker run --interactive --tty --publish 8080:80 --rm borgmatic-docs
|