Skip to content

Commit

Permalink
docs: change port for KTL docs (#713)
Browse files Browse the repository at this point in the history
  • Loading branch information
sudiptob2 authored Feb 1, 2023
1 parent e5f644c commit 517e148
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ VOLUMES := -v $(TMPDIR)/lifecycle-toolkit-docs:/src -v $(CURDIR)/content/en/docs
# renovate: datasource=docker depName=klakegg/hugo
HUGO_VERSION := 0.105.0-ext
IMAGE := klakegg/hugo:$(HUGO_VERSION)
PORT := 1314

.PHONY: build server clean htmltest

Expand All @@ -16,7 +17,7 @@ build:
docker run --rm -it $(VOLUMES) $(IMAGE) -D -v

server:
docker run --rm -it $(VOLUMES) -p 1313:1313 $(IMAGE) server -D
docker run --rm -it $(VOLUMES) -p $(PORT):$(PORT) $(IMAGE) server -D -p $(PORT)

clean:
docker run --rm -it $(VOLUMES) $(IMAGE) --cleanDestinationDir
Expand Down

0 comments on commit 517e148

Please sign in to comment.