mirror of
https://github.com/talent-plan/tinykv.git
synced 2025-01-13 13:50:43 +08:00
9 lines
235 B
Bash
9 lines
235 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
# Make sure docker is installed before executing it.
|
||
|
|
||
|
docker pull mattjtodd/raml2html:latest
|
||
|
docker run --rm -v $PWD:/raml mattjtodd/raml2html -i /raml/server/api/api.raml -o /raml/docs/api.html
|
||
|
|