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