From 3b73828f2581cebbab3c8b65dc0adee043b567ee Mon Sep 17 00:00:00 2001 From: askiiart Date: Sat, 26 Aug 2023 15:27:44 -0500 Subject: [PATCH] Add examples --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a4d376..2f552fc 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,27 @@ Hugo in a Docker container +## Running + +Example `docker run`: + +```bash +docker run -v /path/to/site:/data docker.askiiart.net/askiiart/hugo hugo version +``` + +Example `docker-compose.yml`: + +```yaml +version: '3.7' +services: + hugo: + image: docker.askiiart.net/askiiart/hugo + volumes: + - /path/to/site:/data + command: hugo version + ## Building 1. Download Dart Sass (linux-x64) from [here](https://github.com/sass/dart-sass/releases/latest), and extract it with `tar -xzf dart-sass-*.tar.gz` 2. Download Hugo from (linux-amd64) from [here](https://github.com/gohugoio/hugo/releases/latest) and extract it with `tar -xzf hugo_*_linux-amd64.tar.gz --one-top-level` -3. Run `docker build .` \ No newline at end of file +3. Run `docker build .`