UNCLASSIFIED

You need to sign in or sign up before continuing.
README.md 788 Bytes
Newer Older
Omar Hasan's avatar
Omar Hasan committed
1
# Hugo
Gerard Fulton's avatar
Gerard Fulton committed
2

Omar Hasan's avatar
Omar Hasan committed
3 4 5 6
Hugo is a static HTML and CSS website generator written in Go. It is optimized
for speed, ease of use, and configurability. Hugo takes a directory with content
and templates and renders them into a full HTML website.

7 8 9 10 11 12 13 14 15 16 17 18
For more info see the Hugo's [github](https://github.com/gohugoio/hugo).

## Usage

Typical local usage of this image involves mounting a volume of your static site
and performing the server command. To create a quickstart static site, follow
the instructions [here](https://gohugo.io/getting-started/quick-start/).

Once the site is created and you are in the top level of the `quickstart`
directory you serve the site like so:

```
Omar Hasan's avatar
Omar Hasan committed
19
docker run --rm -it -v $PWD:/home/hugo -p 1313:1313 registry1.dsop.io/ironbank/opensource/hugo:0.76.4 server --bind 0.0.0.0
20
```