Sign inSign up

ryotan/kaba-gitbook

By ryotan

Updated over 9 years ago

GitBook + PlantUML build environment.

Image
1

909

ryotan/kaba-gitbook repository overview

Kaba GitBook build environment

GitBook + PlantUML build environment using gitbook-plugin-uml.

Getting things up

Run GitBook server

Run the command below in the document directory.

docker run --rm -v "$(pwd):/workspace" -it -p 4000:4000 ryotan/kaba-gitbook serve
Build HTML

Run the command below in the document directory.

docker run --rm -v "$(pwd):/workspace" ryotan/kaba-gitbook "$1"
Wrapper script
#! /bin/bash

case $1 in
    serve)
        docker run --rm -v "$(pwd):/workspace" -it -p 4000:4000 ryotan/kaba-gitbook "$1"
        ;;
    build)
        docker run --rm -v "$(pwd):/workspace" ryotan/kaba-gitbook "$1"
    ;;
esac

License

Except as otherwise noted, these codes are licensed under CC0. It is requested to read and accept IPA Font License before using IPAex Fonts in this repository.

Tag summary

Content type

Image

Digest

Size

157.6 MB

Last updated

over 9 years ago

docker pull ryotan/kaba-gitbook