Skip to content

Commit

Permalink
fix: tz var
Browse files Browse the repository at this point in the history
  • Loading branch information
rwxd committed Dec 4, 2023
1 parent 6b4acff commit da998ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

serve: ## Serve blog with a container on port 8000
docker run --rm -p 8000:8000 -v $(CURRENT_DIR):/src $(CONTAINER) mkdocs serve
docker run --rm -p 8000:8000 -e TZ=UTC -v $(CURRENT_DIR):/src $(CONTAINER) mkdocs serve

build: ## Build blog pages
mkdir -p $(SITE_DIR)
Expand Down

0 comments on commit da998ff

Please sign in to comment.