Running the Hugo Generator in Podman #
Make the /src
dir, then cd src
.
mkdir themes
cd ..
Run build #
podman run --name hugo --rm -it -v $(pwd):/src klakegg/hugo:0.101.0
Run server: #
podman run --name hugo --rm -it -v $(pwd):/src -p 1313:1313 klakegg/hugo:0.101.0 server
Get the Hugo bear-blog theme #
cd themes
.git clone https://github.com/janraasch/hugo-bearblog
.- Copy
exampleSite
to root.
Edit the files as requires. Read the Hugo docs for further info.