Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gotha/blog
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gotha/blog
- Owner: gotha
- Created: 2024-01-07T19:28:43.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-01-13T18:27:01.000Z (about 1 year ago)
- Last Synced: 2024-01-14T05:22:31.584Z (about 1 year ago)
- Language: Dockerfile
- Size: 299 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blog
## Requirements
Install [hugo](https://gohugo.io/)
## Build
Tested with Hugo version 0.120 and v0.121.2
```sh
hugo
```### Build with docker
Prepare docker image
```sh
docker build -t local/blog-builder:latest -f Dockerfile.builder .
```Build the blog:
```sh
docker run -v .:/tmp/hugo local/blog-builder:latest hugo
```## Local development
```sh
hugo server
```## Run inside docker
### Run with docker-compose
```sh
docker-compose up -d
```