Merge branch 'main' of ssh://git.autonomic.zone:2222/coop-cloud/cloud.autonomic.zone
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Roxie Gibson 2021-03-29 21:59:13 +01:00
commit e19e5d5e7a
Signed by untrusted user: roxxers
GPG Key ID: 5D0140EDEE123F4D
2 changed files with 5 additions and 4 deletions

View File

@ -1,7 +1,7 @@
FROM klakegg/hugo:debian FROM klakegg/hugo:latest-ext
EXPOSE 1313 EXPOSE 1313
COPY . /src/ COPY . /src/
CMD ["server", "--bind", "0.0.0.0"] CMD ["server", "--bind", "0.0.0.0", "--environment", "production", "--disableLiveReload", "--baseURL", "https://cloud.autonomic.zone"]

View File

@ -8,7 +8,8 @@ Splash page for the project.
## Hack ## Hack
You'll need to get the latest extended Hugo release. See [the Github releases](https://github.com/gohugoio/hugo/releases).
```bash ```bash
$ sudo apt install -y hugo $ hugo server
$ hugo serve
``` ```