├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── MAINTAINERS ├── MAINTAINERS_GUIDE.md ├── OCI-certified-brand-guide-v1.pdf ├── README-WG.md ├── README.md ├── distribution-spec ├── live │ ├── azurecontainerregistry │ │ └── badges.md │ ├── django-oci │ │ └── badges.md │ ├── gitlab │ │ └── badges.md │ ├── keppel │ │ └── badges.md │ ├── olareg │ │ └── badges.md │ ├── openregistry │ │ └── badges.md │ └── zot │ │ └── badges.md ├── v1.0 │ ├── artifactory │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html │ ├── azurecontainerregistry │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html │ ├── django-oci │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html │ ├── gitea │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html │ ├── gitlab │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html │ ├── keppel │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html │ ├── metahub │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html │ ├── openregistry │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html │ └── zot │ │ ├── PRODUCT.yaml │ │ ├── README.md │ │ ├── junit.xml │ │ └── report.html └── v1.1 │ ├── artifactory │ ├── PRODUCT.yaml │ ├── README.md │ ├── junit.xml │ └── report.html │ ├── azurecontainerregistry │ ├── PRODUCT.yaml │ ├── README.md │ ├── junit.xml │ └── report.html │ ├── cloudsmith │ ├── PRODUCT.yaml │ ├── README.md │ ├── junit.xml │ └── report.html │ ├── keygen │ ├── PRODUCT.yaml │ ├── README.md │ ├── junit.xml │ └── report.html │ └── olareg │ ├── PRODUCT.yaml │ ├── README.md │ ├── junit.xml │ └── report.html ├── faq.md ├── hack └── build-static-site.sh ├── instructions.md ├── netlify.toml ├── participation-form └── OCI_Certified_Form.md ├── products-page-generator ├── .gitignore ├── README.md ├── go.mod ├── go.sum ├── index.md.tpl ├── jekyll │ ├── .gitignore │ ├── Gemfile │ ├── _config.yml │ └── favicon.ico └── main.go ├── reviewing.md └── terms-conditions └── OCI_Certified_Terms.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | results/ 3 | _site/ 4 | **/.DS_Store 5 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /MAINTAINERS_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/MAINTAINERS_GUIDE.md -------------------------------------------------------------------------------- /OCI-certified-brand-guide-v1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/OCI-certified-brand-guide-v1.pdf -------------------------------------------------------------------------------- /README-WG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/README-WG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/README.md -------------------------------------------------------------------------------- /distribution-spec/live/azurecontainerregistry/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/live/azurecontainerregistry/badges.md -------------------------------------------------------------------------------- /distribution-spec/live/django-oci/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/live/django-oci/badges.md -------------------------------------------------------------------------------- /distribution-spec/live/gitlab/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/live/gitlab/badges.md -------------------------------------------------------------------------------- /distribution-spec/live/keppel/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/live/keppel/badges.md -------------------------------------------------------------------------------- /distribution-spec/live/olareg/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/live/olareg/badges.md -------------------------------------------------------------------------------- /distribution-spec/live/openregistry/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/live/openregistry/badges.md -------------------------------------------------------------------------------- /distribution-spec/live/zot/badges.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/live/zot/badges.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/artifactory/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/artifactory/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/artifactory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/artifactory/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/artifactory/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/artifactory/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/artifactory/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/artifactory/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.0/azurecontainerregistry/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/azurecontainerregistry/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/azurecontainerregistry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/azurecontainerregistry/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/azurecontainerregistry/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/azurecontainerregistry/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/azurecontainerregistry/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/azurecontainerregistry/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.0/django-oci/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/django-oci/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/django-oci/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/django-oci/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/django-oci/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/django-oci/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/django-oci/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/django-oci/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.0/gitea/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/gitea/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/gitea/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/gitea/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/gitea/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/gitea/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/gitea/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/gitea/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.0/gitlab/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/gitlab/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/gitlab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/gitlab/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/gitlab/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/gitlab/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/gitlab/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/gitlab/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.0/keppel/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/keppel/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/keppel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/keppel/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/keppel/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/keppel/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/keppel/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/keppel/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.0/metahub/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/metahub/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/metahub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/metahub/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/metahub/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/metahub/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/metahub/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/metahub/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.0/openregistry/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/openregistry/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/openregistry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/openregistry/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/openregistry/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/openregistry/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/openregistry/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/openregistry/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.0/zot/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/zot/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.0/zot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/zot/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.0/zot/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/zot/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.0/zot/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.0/zot/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.1/artifactory/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/artifactory/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.1/artifactory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/artifactory/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.1/artifactory/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/artifactory/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.1/artifactory/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/artifactory/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.1/azurecontainerregistry/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/azurecontainerregistry/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.1/azurecontainerregistry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/azurecontainerregistry/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.1/azurecontainerregistry/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/azurecontainerregistry/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.1/azurecontainerregistry/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/azurecontainerregistry/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.1/cloudsmith/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/cloudsmith/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.1/cloudsmith/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/cloudsmith/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.1/cloudsmith/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/cloudsmith/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.1/cloudsmith/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/cloudsmith/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.1/keygen/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/keygen/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.1/keygen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/keygen/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.1/keygen/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/keygen/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.1/keygen/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/keygen/report.html -------------------------------------------------------------------------------- /distribution-spec/v1.1/olareg/PRODUCT.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/olareg/PRODUCT.yaml -------------------------------------------------------------------------------- /distribution-spec/v1.1/olareg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/olareg/README.md -------------------------------------------------------------------------------- /distribution-spec/v1.1/olareg/junit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/olareg/junit.xml -------------------------------------------------------------------------------- /distribution-spec/v1.1/olareg/report.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/distribution-spec/v1.1/olareg/report.html -------------------------------------------------------------------------------- /faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/faq.md -------------------------------------------------------------------------------- /hack/build-static-site.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/hack/build-static-site.sh -------------------------------------------------------------------------------- /instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/instructions.md -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/netlify.toml -------------------------------------------------------------------------------- /participation-form/OCI_Certified_Form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/participation-form/OCI_Certified_Form.md -------------------------------------------------------------------------------- /products-page-generator/.gitignore: -------------------------------------------------------------------------------- 1 | output/ 2 | vendor/ 3 | -------------------------------------------------------------------------------- /products-page-generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/README.md -------------------------------------------------------------------------------- /products-page-generator/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/go.mod -------------------------------------------------------------------------------- /products-page-generator/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/go.sum -------------------------------------------------------------------------------- /products-page-generator/index.md.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/index.md.tpl -------------------------------------------------------------------------------- /products-page-generator/jekyll/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/jekyll/.gitignore -------------------------------------------------------------------------------- /products-page-generator/jekyll/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/jekyll/Gemfile -------------------------------------------------------------------------------- /products-page-generator/jekyll/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/jekyll/_config.yml -------------------------------------------------------------------------------- /products-page-generator/jekyll/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/jekyll/favicon.ico -------------------------------------------------------------------------------- /products-page-generator/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/products-page-generator/main.go -------------------------------------------------------------------------------- /reviewing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/reviewing.md -------------------------------------------------------------------------------- /terms-conditions/OCI_Certified_Terms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opencontainers/oci-conformance/HEAD/terms-conditions/OCI_Certified_Terms.md --------------------------------------------------------------------------------