Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
output
schema/validate
code-of-conduct.md
6 changes: 4 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ default: docs
.PHONY: docs
docs: output/docs.pdf output/docs.html

output/docs.pdf:
output/docs.pdf: $(DOC_FILES)
mkdir -p output/ && \
$(DOCKER) run \
-it \
Expand All @@ -32,7 +32,7 @@ output/docs.pdf:
-u $(shell id -u) \
vbatts/pandoc -f markdown_github -t latex -o /$@ $(patsubst %,/input/%,$(DOC_FILES))

output/docs.html:
output/docs.html: $(DOC_FILES)
mkdir -p output/ && \
$(DOCKER) run \
-it \
Expand All @@ -42,6 +42,8 @@ output/docs.html:
-u $(shell id -u) \
vbatts/pandoc -f markdown_github -t html5 -o /$@ $(patsubst %,/input/%,$(DOC_FILES))

code-of-conduct.md:
curl -o $@ https://raw.githubusercontent.com/opencontainers/tob/d2f9d68c1332870e40693fe077d311e0742bc73d/code-of-conduct.md

HOST_GOLANG_VERSION = $(shell go version | cut -d ' ' -f3 | cut -c 3-)
# this variable is used like a function. First arg is the minimum version, Second arg is the version to be checked.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ The [Open Container Initiative](http://www.opencontainers.org/) develops specifi
Table of Contents

- [Introduction](README.md)
- [Code of Conduct](code-of-conduct.md)
- [Code of Conduct](#code-of-conduct)
- [Container Principles](principles.md)
- [Style and Conventions](style.md)
- [Roadmap](ROADMAP.md)
Expand Down Expand Up @@ -59,7 +59,7 @@ The specification and code is licensed under the Apache 2.0 license found in the

## Code of Conduct

Participation in the OpenContainers community is governed by [OpenContainer's Code of Conduct](https://github.com/opencontainers/tob/blob/master/code-of-conduct.md).
Participation in the OpenContainers community is governed by [OpenContainer's Code of Conduct](https://github.com/opencontainers/tob/blob/d2f9d68c1332870e40693fe077d311e0742bc73d/code-of-conduct.md).

## Discuss your design

Expand Down
37 changes: 0 additions & 37 deletions code-of-conduct.md

This file was deleted.