Compare commits
No commits in common. "eb77ad63c9e3c519054c756a3e279ea9451f3e42" and "e7ff350a38f64b8abfc85698099c1b2c31d4f0f6" have entirely different histories.
eb77ad63c9
...
e7ff350a38
|
@ -1,18 +0,0 @@
|
||||||
root = true
|
|
||||||
|
|
||||||
[Containerfile]
|
|
||||||
charset = utf8
|
|
||||||
indent_style = tab
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
[Makefile]
|
|
||||||
indent_style = tab
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
[*.md]
|
|
||||||
indent_style = space
|
|
||||||
indent_size = 2
|
|
||||||
|
|
||||||
[*]
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = true
|
|
|
@ -1 +0,0 @@
|
||||||
out/
|
|
22
Makefile
22
Makefile
|
@ -1,22 +0,0 @@
|
||||||
PORT := 8080
|
|
||||||
default: build
|
|
||||||
|
|
||||||
out:
|
|
||||||
mkdir -p out
|
|
||||||
|
|
||||||
.PHONY: build
|
|
||||||
build: out/index.json
|
|
||||||
out/index.json: out Containerfile
|
|
||||||
docker \
|
|
||||||
build \
|
|
||||||
-f Containerfile \
|
|
||||||
--output type=oci,rewrite-timestamp=true,force-compression=true,name=distrust/docs,tar=true,dest=- \
|
|
||||||
. \
|
|
||||||
| tar -C out/ -mx
|
|
||||||
|
|
||||||
.PHONY: serve
|
|
||||||
serve: build
|
|
||||||
tar -C out/ -cf - . | docker load
|
|
||||||
docker run -p $(PORT):8080 distrust/docs
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue