minor updates
This commit is contained in:
3
emerald-theory/hugo/config.toml
Normal file
3
emerald-theory/hugo/config.toml
Normal file
@@ -0,0 +1,3 @@
|
||||
baseURL = 'http://example.org/'
|
||||
languageCode = 'en-us'
|
||||
title = 'My New Hugo Site'
|
32
emerald-theory/hugo/docker-compose.yml
Normal file
32
emerald-theory/hugo/docker-compose.yml
Normal file
@@ -0,0 +1,32 @@
|
||||
---
|
||||
|
||||
# Hugo
|
||||
# Static Site Generator
|
||||
# Created by Hugo
|
||||
# ↳ https://github.com/gohugoio/hugo
|
||||
|
||||
services:
|
||||
hugo:
|
||||
image: ghcr.io/gohugoio/hugo:latest
|
||||
container_name: hugo
|
||||
restart: unless-stopped
|
||||
|
||||
networks:
|
||||
- proxy
|
||||
# ports:
|
||||
# - 80:80
|
||||
|
||||
environment:
|
||||
PUID: 1000
|
||||
PGID: 1000
|
||||
|
||||
volumes:
|
||||
- /etc/timezone:/etc/timezone:ro
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /home/fxequals/docker/hugo/website:/src
|
||||
|
||||
networks:
|
||||
proxy:
|
||||
external: true
|
||||
|
||||
# Documentation available at https://gohugo.io/documentation
|
Reference in New Issue
Block a user