32 lines
553 B
YAML
32 lines
553 B
YAML
---
|
|
|
|
# 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 |