Compare commits

...

No commits in common. "master" and "gh-pages" have entirely different histories.

471 changed files with 4826 additions and 1530 deletions

View file

@ -1,2 +0,0 @@
dist
.git

View file

@ -1,26 +0,0 @@
_The template below is mostly useful for bug reports and support questions. Feel free to remove anything which doesn't apply to you and add more information where it makes sense._
_Also, before reporting a new issue, please make sure that:_
- _You read carefully the [documentation and frequently asked questions](https://github.com/NVIDIA/nvidia-docker/wiki)._
- _You [searched](https://github.com/NVIDIA/nvidia-docker/issues?utf8=%E2%9C%93&q=is%3Aissue) for a similar issue and this is not a duplicate of an existing one._
- _This issue is not related to [NGC](https://github.com/NVIDIA/nvidia-docker/wiki/NGC), otherwise, please use the [devtalk forums](https://devtalk.nvidia.com/default/board/200/nvidia-gpu-cloud-ngc-users/) instead._
- _You went through the [troubleshooting](https://github.com/NVIDIA/nvidia-docker/wiki/Troubleshooting) steps._
---
### 1. Issue or feature description
### 2. Steps to reproduce the issue
### 3. Information to [attach](https://help.github.com/articles/file-attachments-on-issues-and-pull-requests/) (optional if deemed irrelevant)
- [ ] Some nvidia-container information: `nvidia-container-cli -k -d /dev/tty info`
- [ ] Kernel version from `uname -a`
- [ ] Any relevant kernel output lines from `dmesg`
- [ ] Driver information from `nvidia-smi -a`
- [ ] Docker version from `docker version`
- [ ] NVIDIA packages version from `dpkg -l '*nvidia*'` _or_ `rpm -qa '*nvidia*'`
- [ ] NVIDIA container library version from `nvidia-container-cli -V`
- [ ] NVIDIA container library logs (see [troubleshooting](https://github.com/NVIDIA/nvidia-docker/wiki/Troubleshooting))
- [ ] Docker command, image and tag used

9
.gitignore vendored
View file

@ -1,9 +0,0 @@
*.a
*.o
*.so
*.so.*
*.swp
.\#*
*~
\#*
dist

View file

@ -1,104 +0,0 @@
# Build packages for all supported OS / ARCH combinations
stages:
- build-one
- build-all
.build-setup: &build-setup
image: docker:19.03.8
services:
- name: docker:19.03.8-dind
command: ["--experimental"]
before_script:
- apk update
- apk upgrade
- apk add coreutils build-base sed git bash make
- docker run --rm --privileged multiarch/qemu-user-static --reset -p yes -c yes
# build-one jobs build packages for a single OS / ARCH combination.
#
# They are run during the first stage of the pipeline as a smoke test to ensure
# that we can successfully build packages on all of our architectures for a
# single OS. They are triggered on any change to an MR. No artifacts are
# produced as part of build-one jobs.
.build-one-setup: &build-one-setup
<<: *build-setup
stage: build-one
only:
- merge_requests
# build-all jobs build packages for every OS / ARCH combination we support.
#
# They are run under two conditions:
# 1) Automatically whenever a new tag is pushed to the repo (e.g. v1.1.0)
# 2) Manually by a reviewer just before merging a MR.
#
# Unlike build-one jobs, it takes a long time to build the full suite
# OS / ARCH combinations, so this is optimized to only run once per MR
# (assuming it all passes). A full set of artifacts including the packages
# built for each OS / ARCH are produced as a result of these jobs.
.build-all-setup: &build-all-setup
<<: *build-setup
stage: build-all
timeout: 2h 30m
rules:
- if: $CI_COMMIT_TAG
when: always
- if: $CI_MERGE_REQUEST_ID
when: manual
variables:
ARTIFACTS_NAME: "${CI_PROJECT_NAME}-${CI_COMMIT_REF_SLUG}-${CI_JOB_NAME}-artifacts-${CI_PIPELINE_ID}"
ARTIFACTS_DIR: "${CI_PROJECT_NAME}-${CI_COMMIT_REF_SLUG}-artifacts-${CI_PIPELINE_ID}"
DIST_DIR: "${CI_PROJECT_DIR}/${ARTIFACTS_DIR}"
artifacts:
name: ${ARTIFACTS_NAME}
paths:
- ${ARTIFACTS_DIR}
# The full set of build-one jobs organizes to build
# ubuntu18.04 in parallel on each of our supported ARCHs.
build-one-amd64:
<<: *build-one-setup
script:
- make ubuntu18.04-amd64
build-one-ppc64le:
<<: *build-one-setup
script:
- make ubuntu18.04-ppc64le
build-one-arm64:
<<: *build-one-setup
script:
- make ubuntu18.04-arm64
# The full set of build-all jobs organized to
# have builds for each ARCH run in parallel.
build-all-amd64:
<<: *build-all-setup
script:
- make docker-amd64
build-all-x86_64:
<<: *build-all-setup
script:
- make docker-x86_64
build-all-ppc64le:
<<: *build-all-setup
script:
- make docker-ppc64le
build-all-arm64:
<<: *build-all-setup
script:
- make docker-arm64
build-all-aarch64:
<<: *build-all-setup
script:
- make docker-aarch64

2
404.html Normal file
View file

@ -0,0 +1,2 @@
# Unsupported distribution!
# Check https://nvidia.github.io/nvidia-docker

View file

@ -1,60 +0,0 @@
# Contribute to the NVIDIA Container Toolkit
Want to hack on the NVIDIA Container Toolkit Project? Awesome!
We only require you to sign your work, the below section describes this!
## Sign your work
The sign-off is a simple line at the end of the explanation for the patch. Your
signature certifies that you wrote the patch or otherwise have the right to pass
it on as an open-source patch. The rules are pretty simple: if you can certify
the below (from [developercertificate.org](http://developercertificate.org/)):
```
Developer Certificate of Origin
Version 1.1
Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
1 Letterman Drive
Suite D4700
San Francisco, CA, 94129
Everyone is permitted to copy and distribute verbatim copies of this
license document, but changing it is not allowed.
Developer's Certificate of Origin 1.1
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
have the right to submit it under the open source license
indicated in the file; or
(b) The contribution is based upon previous work that, to the best
of my knowledge, is covered under an appropriate open source
license and I have the right under that license to submit that
work with modifications, whether created in whole or in part
by me, under the same open source license (unless I am
permitted to submit under a different license), as indicated
in the file; or
(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
(d) I understand and agree that this project and the contribution
are public and that a record of the contribution (including all
personal information I submit with it, including my sign-off) is
maintained indefinitely and may be redistributed consistent with
this project or the open source license(s) involved.
```
Then you just add a line to every git commit message:
Signed-off-by: Joe Smith <joe.smith@email.com>
Use your real name (sorry, no pseudonyms or anonymous contributions.)
If you set your `user.name` and `user.email` git configs, you can sign your
commit automatically with `git commit -s`.

106
Jenkinsfile vendored
View file

@ -1,106 +0,0 @@
/*
# Copyright (c) 2021, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
*/
podTemplate (cloud:'sw-gpu-cloudnative',
containers: [
containerTemplate(name: 'docker', image: 'docker:dind', ttyEnabled: true, privileged: true)
]) {
node(POD_LABEL) {
def scmInfo
stage('checkout') {
scmInfo = checkout(scm)
}
stage('dependencies') {
container('docker') {
sh 'apk add --no-cache make bash git'
}
}
def versionInfo
stage('version') {
container('docker') {
versionInfo = getVersionInfo(scmInfo)
println "versionInfo=${versionInfo}"
}
}
def dist = 'ubuntu20.04'
def arch = 'amd64'
def stageLabel = "${dist}-${arch}"
stage('build-one') {
container('docker') {
stage (stageLabel) {
sh "make ADD_DOCKER_PLATFORM_ARGS=true ${dist}-${arch}"
}
}
}
stage('release') {
container('docker') {
stage (stageLabel) {
def component = 'main'
def repository = 'sw-gpu-cloudnative-debian-local/pool/main/'
def uploadSpec = """{
"files":
[ {
"pattern": "./dist/${dist}/${arch}/*.deb",
"target": "${repository}",
"props": "deb.distribution=${dist};deb.component=${component};deb.architecture=${arch}"
}
]
}"""
sh "echo starting release with versionInfo=${versionInfo}"
if (versionInfo.isTag) {
// upload to artifactory repository
def server = Artifactory.server 'sw-gpu-artifactory'
server.upload spec: uploadSpec
} else {
sh "echo skipping release for non-tagged build"
}
}
}
}
}
}
// getVersionInfo returns a hash of version info
def getVersionInfo(def scmInfo) {
def versionInfo = [
isTag: isTag(scmInfo.GIT_BRANCH)
]
scmInfo.each { k, v -> versionInfo[k] = v }
return versionInfo
}
def isTag(def branch) {
if (!branch.startsWith('v')) {
return false
}
def version = shOutput('git describe --all --exact-match --always')
return version == "tags/${branch}"
}
def shOuptut(def script) {
return sh(script: script, returnStdout: true).trim()
}

202
LICENSE
View file

@ -1,202 +0,0 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View file

@ -1,24 +0,0 @@
# Copyright (c) 2017-2021, NVIDIA CORPORATION. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
LIB_NAME := nvidia-docker2
LIB_VERSION := 2.7.0
LIB_TAG := rc.2
TOOLKIT_VERSION ?= 1.6.0
TOOLKIT_TAG ?= rc.2
# By default run all native docker-based targets
docker-native:
include $(CURDIR)/docker/docker.mk

View file

@ -1,32 +0,0 @@
# NVIDIA Container Toolkit
[![GitHub license](https://img.shields.io/github/license/NVIDIA/nvidia-docker?style=flat-square)](https://raw.githubusercontent.com/NVIDIA/nvidia-docker/master/LICENSE)
[![Documentation](https://img.shields.io/badge/documentation-wiki-blue.svg?style=flat-square)](https://github.com/NVIDIA/nvidia-docker/wiki)
[![Package repository](https://img.shields.io/badge/packages-repository-b956e8.svg?style=flat-square)](https://nvidia.github.io/nvidia-docker)
![nvidia-gpu-docker](https://cloud.githubusercontent.com/assets/3028125/12213714/5b208976-b632-11e5-8406-38d379ec46aa.png)
## Introduction
The NVIDIA Container Toolkit allows users to build and run GPU accelerated Docker containers. The toolkit includes a container runtime [library](https://github.com/NVIDIA/libnvidia-container) and utilities to automatically configure containers to leverage NVIDIA GPUs.
Product documentation including an architecture overview, platform support, installation and usage guides can be found in the [documentation repository](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/overview.html).
Frequently asked questions are available on the [wiki](https://github.com/NVIDIA/nvidia-docker/wiki).
## Getting Started
**Make sure you have installed the [NVIDIA driver](https://github.com/NVIDIA/nvidia-docker/wiki/Frequently-Asked-Questions#how-do-i-install-the-nvidia-driver) and Docker engine for your Linux distribution**
**Note that you do not need to install the CUDA Toolkit on the host system, but the NVIDIA driver needs to be installed**
For instructions on getting started with the NVIDIA Container Toolkit, refer to the [installation guide](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html#docker).
## Usage
The [user guide](https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/user-guide.html) provides information on the configuration and command line options available when running GPU containers with Docker.
## Issues and Contributing
[Checkout the Contributing document!](CONTRIBUTING.md)
* Please let us know by [filing a new issue](https://github.com/NVIDIA/nvidia-docker/issues/new)
* You can contribute by opening a [pull request](https://help.github.com/articles/using-pull-requests/)

4
_config.yml Normal file
View file

@ -0,0 +1,4 @@
theme: jekyll-theme-minimal
title: nvidia-docker
description: NVIDIA Docker Engine wrapper repository.
show_downloads: false

65
_layouts/default.html Normal file
View file

@ -0,0 +1,65 @@
<!doctype html>
<html lang="{{ site.lang | default: "en-US" }}">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
{% seo %}
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
<meta name="viewport" content="width=device-width">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
</head>
<body>
<div class="wrapper">
<header>
<img src="{{ '/assets/logo.jpg' | relative_url }}">
<h1>{{ site.title | default: site.github.repository_name }}</h1>
<p>{{ site.description | default: site.github.project_tagline }}</p>
{% if site.github.is_project_page %}
<p class="view"><a href="{{ site.github.repository_url }}">View the Project on GitHub <small>{{ github_name }}</small></a></p>
{% endif %}
{% if site.github.is_user_page %}
<p class="view"><a href="{{ site.github.owner_url }}">View My GitHub Profile</a></p>
{% endif %}
{% if site.show_downloads %}
<ul>
<li><a href="{{ site.github.zip_url }}">Download <strong>ZIP File</strong></a></li>
<li><a href="{{ site.github.tar_url }}">Download <strong>TAR Ball</strong></a></li>
<li><a href="{{ site.github.repository_url }}">View On <strong>GitHub</strong></a></li>
</ul>
{% endif %}
</header>
<section>
{{ content }}
</section>
<footer>
{% if site.github.is_project_page %}
<p>This project is maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p>
{% endif %}
<p><small>Copyright (c) 2017, NVIDIA CORPORATION.<br/>All rights reserved.</small></p>
</footer>
</div>
<script src="{{ '/assets/js/scale.fix.js' | relative_url }}"></script>
{% if site.google_analytics %}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', '{{ site.google_analytics }}', 'auto');
ga('send', 'pageview');
</script>
{% endif %}
</body>
</html>

49
amzn1/nvidia-docker.repo Normal file
View file

@ -0,0 +1,49 @@
[libnvidia-container]
name=libnvidia-container
baseurl=https://nvidia.github.io/libnvidia-container/stable/amzn1/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/libnvidia-container/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[libnvidia-container-experimental]
name=libnvidia-container-experimental
baseurl=https://nvidia.github.io/libnvidia-container/experimental/amzn1/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=0
gpgkey=https://nvidia.github.io/libnvidia-container/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-container-runtime]
name=nvidia-container-runtime
baseurl=https://nvidia.github.io/nvidia-container-runtime/stable/amzn1/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-container-runtime/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-container-runtime-experimental]
name=nvidia-container-runtime-experimental
baseurl=https://nvidia.github.io/nvidia-container-runtime/experimental/amzn1/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=0
gpgkey=https://nvidia.github.io/nvidia-container-runtime/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-docker]
name=nvidia-docker
baseurl=https://nvidia.github.io/nvidia-docker/amzn1/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-docker/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<repomd xmlns="http://linux.duke.edu/metadata/repo" xmlns:rpm="http://linux.duke.edu/metadata/rpm">
<revision>1.0</revision>
<data type="primary">
<checksum type="sha512">439b29d841fc3c47b842f6357ea0805819ea0f39d762fb54d1c4478d92d6b5b51839a1c43fc82186ad5ee3832d3a75052f2b0b8d4aae8e962b8ae0a4097000d5</checksum>
<open-checksum type="sha512">88c89545dc04ee5d005f4f05c2584ed6be6ee98146689025df7f972cf9867a426c4ab135a20a9e3b77217b43c1cfc92982a30d4e4cdd1f7148100820120dc32d</open-checksum>
<location href="repodata/439b29d841fc3c47b842f6357ea0805819ea0f39d762fb54d1c4478d92d6b5b51839a1c43fc82186ad5ee3832d3a75052f2b0b8d4aae8e962b8ae0a4097000d5-primary.xml.gz"/>
<timestamp>1619710458</timestamp>
<size>3240</size>
<open-size>30469</open-size>
</data>
<data type="filelists">
<checksum type="sha512">4767bb028f79831efb57d45a559e5adb267377096508475b29827de755afac4f76e4030bbf3e5e5e3694987974d904b67f5d4b07b2fe1246a2a7b097ef7498e5</checksum>
<open-checksum type="sha512">1d05b8078ecc5670bed44d0181288fc19844849fd4ef18fabc327e6cc81c3e75d36c62756de96bf56a6cbf329fe818877607b0793e36d1d173ce438420cb3992</open-checksum>
<location href="repodata/4767bb028f79831efb57d45a559e5adb267377096508475b29827de755afac4f76e4030bbf3e5e5e3694987974d904b67f5d4b07b2fe1246a2a7b097ef7498e5-filelists.xml.gz"/>
<timestamp>1619710458</timestamp>
<size>1879</size>
<open-size>8340</open-size>
</data>
<data type="other">
<checksum type="sha512">1fad8d370484bbcb0ad0d57fc5ac7b2be1fde68e4d70b8ff27e5f87612af028b1dc591a7ad7b9e07783dec30a285eb90eb0016ac108ddfbb653cb9ac34c9813c</checksum>
<open-checksum type="sha512">ce146b43233a4a9a0bc5131acb1ddd3c7f641b1c16ad13544e81ffe7c484860ba43938dbe93108d259ad3745f085a8c8be0904c032a0a204dc2554abd119960e</open-checksum>
<location href="repodata/1fad8d370484bbcb0ad0d57fc5ac7b2be1fde68e4d70b8ff27e5f87612af028b1dc591a7ad7b9e07783dec30a285eb90eb0016ac108ddfbb653cb9ac34c9813c-other.xml.gz"/>
<timestamp>1619710458</timestamp>
<size>2137</size>
<open-size>6915</open-size>
</data>
</repomd>

View file

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEEyVsyG2HojBgJxPdZ3crgRPeW7LAFAmCK0foACgkQ3crgRPeW
7LDKlw/+O/LkLFu/0Wfka8o5yd2V/CB9dU1kWHu/UVhnwwsNIvFHkcIJ9qzqpPBC
EqZhUVUSasH8uy0hv5a6JtskO3HVpprDxFEKSjd6kqpKvGYBl0i0RO/qhonEIOLt
vDtGfL9Ap3oDBO18kFoIKHnaOhji8FQdIy2UsDeLnlWx/0phquBRWZfwPBv4UCon
cBoJzS3wunS3ja10H3z9um7kKjrZq0p7yjlpvYSn8SUtEGoCv3NvftSO2Xjw/Gd0
umPV923czG41SlLUSR68cEpyM//YT1o/t7yXWVxg9kzqNDh4PQhf+EpzvYhQLO8z
BbqPQY6Q/EZvuqfjg2r5ta3RBG3IbS8ATbK8uMzXY8cJ7eDJ3ueMPRiEGNwtH9QP
AQtniEau23oZtvtTabGqkfnZP8c5BRJ6/sRYOEKb6H7sFYdXUh4kgyBde/K/5TzK
p91mb819Moj6feXS2hX7imGsXFWACAlGXiU0qq6jEbJnyKZLBg/nF/i9Nky+Dl8+
NP3wmQCtboMa422vyRqFCYnIGMRKGQ0AcL/THL6YbZdCIBYEvClY7CUOR1MF+7qW
T89aNU6Vw1Jv0jybzEE2Jclo0+rDw12X18uurEq+bXgLdLBNKS5/5hqGGBafsb6Z
G7C41/N6477ZKeiAu0tBi6SO+kAuKe+yT1rbsCJ7LgTVSU0Qdjk=
=wMVU
-----END PGP SIGNATURE-----

49
amzn2/nvidia-docker.repo Normal file
View file

@ -0,0 +1,49 @@
[libnvidia-container]
name=libnvidia-container
baseurl=https://nvidia.github.io/libnvidia-container/stable/amzn2/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/libnvidia-container/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[libnvidia-container-experimental]
name=libnvidia-container-experimental
baseurl=https://nvidia.github.io/libnvidia-container/experimental/amzn2/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=0
gpgkey=https://nvidia.github.io/libnvidia-container/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-container-runtime]
name=nvidia-container-runtime
baseurl=https://nvidia.github.io/nvidia-container-runtime/stable/amzn2/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-container-runtime/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-container-runtime-experimental]
name=nvidia-container-runtime-experimental
baseurl=https://nvidia.github.io/nvidia-container-runtime/experimental/amzn2/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=0
gpgkey=https://nvidia.github.io/nvidia-container-runtime/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-docker]
name=nvidia-docker
baseurl=https://nvidia.github.io/nvidia-docker/amzn2/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-docker/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<repomd xmlns="http://linux.duke.edu/metadata/repo" xmlns:rpm="http://linux.duke.edu/metadata/rpm">
<revision>1.0</revision>
<data type="primary">
<checksum type="sha512">ca03a4e2f6e5789f70020a2a82bc3f7e196767e3641b0fe7efae9991fd99a664dc48256bd475a7fedbc851f85834c852f8366b90a8d48e94b50edb845e03d565</checksum>
<open-checksum type="sha512">14a1b0976bb82cec51a4ced62af36a00bf89b45e553900b9ea78f962819c645b0e5a87c56822cd488dd5e9694c2b6321f421e60c2c316315e932864a94cb240e</open-checksum>
<location href="repodata/ca03a4e2f6e5789f70020a2a82bc3f7e196767e3641b0fe7efae9991fd99a664dc48256bd475a7fedbc851f85834c852f8366b90a8d48e94b50edb845e03d565-primary.xml.gz"/>
<timestamp>1619710459</timestamp>
<size>2960</size>
<open-size>27007</open-size>
</data>
<data type="filelists">
<checksum type="sha512">43fc75a7c36e1bf21da0705c93b36b8946fe16b91365f9a2b3994369aa435f9f8286c757eea0168557ee1bf6481959dd54e1d7f5b875e9184e91b7bcc4bf7c44</checksum>
<open-checksum type="sha512">be7c57cb3179cffc55ac94d988da0f9d9cf2aec4f337eda11d505db4337ab498331ff8c19375b18a7017903d21fabc51adbbfdcdca46c48480827a848003c6d4</open-checksum>
<location href="repodata/43fc75a7c36e1bf21da0705c93b36b8946fe16b91365f9a2b3994369aa435f9f8286c757eea0168557ee1bf6481959dd54e1d7f5b875e9184e91b7bcc4bf7c44-filelists.xml.gz"/>
<timestamp>1619710459</timestamp>
<size>1716</size>
<open-size>7404</open-size>
</data>
<data type="other">
<checksum type="sha512">a1ce3f6f8c7e4416af255fc1e96d29ee44ac5db7105d66aded8ab37fc5f2b32718d233ff31f875d45348ba983271d5543baf13a788ca2f08dcc062a8fd5093df</checksum>
<open-checksum type="sha512">8665c1c1a7cb35cdf44362144a1eb708a7c86d59fe98366bca2e2ec3eebcc9920b9a86247d34f5eb9ac17b4e732f8d728a3dfdb1ad4ac56df655a88778aa86b0</open-checksum>
<location href="repodata/a1ce3f6f8c7e4416af255fc1e96d29ee44ac5db7105d66aded8ab37fc5f2b32718d233ff31f875d45348ba983271d5543baf13a788ca2f08dcc062a8fd5093df-other.xml.gz"/>
<timestamp>1619710459</timestamp>
<size>1967</size>
<open-size>6395</open-size>
</data>
</repomd>

View file

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEEyVsyG2HojBgJxPdZ3crgRPeW7LAFAmCK0fsACgkQ3crgRPeW
7LCKsA/9F3Mptvzx7y3sf/yRP45Ii7uBg/3DKGHcuu5nprxhRprqOsqujLLP8qhH
aULSWMf52zRUii3zenYCNAJwGlimZFKYhvpwZxvI8bB3x6lc0S+AAzZ1IHzPTh9P
MYTFVK2lFoWiYmhFz63g5o9yMGBmze+f1/EVBWrWbQdDfLsD+eypwpo8n4vBSaRY
COzrC/4yWbBsNC/G+rV1nKBR74L9X9iplkgPI/uZxzsuD806cpydJDig4YIZZbI2
cnfS/OXzGSp3G2GVSKec+GP+8l28xg23zEkCcks/Mkeb50BgplysjzcvmQFb0HUA
x762AXvLczD3ldyFAYcg2bLdRkzbfdV+aTtr1JBkIacbPlB4yxa+FlsQuqjpPq4e
pXW1zBs1rgtNWKL7HeneexUQsNMqHblrtDwrlNirCSjJWpbrw6rrVQYG4iVL6V1I
+iedtRH2N8UJ9qpWIfD+ndwokyS4MpbUyIkSB4sM6EaQKWYu7bK5qexzM2mHypE5
EE/Qn4Vdqeh/lRzJv9Qoq6gvUpuGR4pFzs913VjRePlq9g3RtKi4qDRd5k4y3dNu
eSw5L/eoTXqYbi2Yr8SjkZqqjiQ7Mm2IYCby2khSR7AbFCE1t6G2r2ioQP+PulEg
WkBRoRjByv41rbOGyt/FKeA/1irSUZWTrNKJSmEgvxNL/3H3SAs=
=iUrt
-----END PGP SIGNATURE-----

1
amzn2017.09 Symbolic link
View file

@ -0,0 +1 @@
amzn1

1
amzn2018.03 Symbolic link
View file

@ -0,0 +1 @@
amzn1

16
assets/css/style.scss Normal file
View file

@ -0,0 +1,16 @@
---
---
@import "{{ site.theme }}";
section {
width:700px !important;
}
.wrapper {
width:950px !important;
}
header {
width:200px !important;
}

BIN
assets/logo.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,49 @@
[libnvidia-container]
name=libnvidia-container
baseurl=https://nvidia.github.io/libnvidia-container/stable/centos7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/libnvidia-container/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[libnvidia-container-experimental]
name=libnvidia-container-experimental
baseurl=https://nvidia.github.io/libnvidia-container/experimental/centos7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=0
gpgkey=https://nvidia.github.io/libnvidia-container/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-container-runtime]
name=nvidia-container-runtime
baseurl=https://nvidia.github.io/nvidia-container-runtime/stable/centos7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-container-runtime/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-container-runtime-experimental]
name=nvidia-container-runtime-experimental
baseurl=https://nvidia.github.io/nvidia-container-runtime/experimental/centos7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=0
gpgkey=https://nvidia.github.io/nvidia-container-runtime/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-docker]
name=nvidia-docker
baseurl=https://nvidia.github.io/nvidia-docker/centos7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-docker/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt

Binary file not shown.

View file

@ -0,0 +1,9 @@
[nvidia-docker]
name=nvidia-docker
baseurl=https://nvidia.github.io/nvidia-docker/centos7/ppc64le
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-docker/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,28 @@
<?xml version="1.0" encoding="UTF-8"?>
<repomd xmlns="http://linux.duke.edu/metadata/repo" xmlns:rpm="http://linux.duke.edu/metadata/rpm">
<revision>1.0</revision>
<data type="primary">
<checksum type="sha512">2f898825e843fdece23703de9f4f64d2297c270b58d3923642079ec288a0f215f3cb0254cdb88a631a37a24e27e418f9b535cbf8776b1144169fa8e756d520b8</checksum>
<open-checksum type="sha512">3ac41ed86e375d503be81866f2c83f684822a1ee62efa66037b054b0ed85e270b78e3dadbd8c405a54b41067ff571a663f3a9f72864b1fb7c3223c3769077759</open-checksum>
<location href="repodata/2f898825e843fdece23703de9f4f64d2297c270b58d3923642079ec288a0f215f3cb0254cdb88a631a37a24e27e418f9b535cbf8776b1144169fa8e756d520b8-primary.xml.gz"/>
<timestamp>1619710461</timestamp>
<size>1739</size>
<open-size>8896</open-size>
</data>
<data type="filelists">
<checksum type="sha512">c0a11b349eddb321ef6ee46777635543b6ea5abb34b2f83059529c33143dd6a6de4473e9bc7d4c46780e8d603c54f727cd05bc0a5b624673f47ca89ef61be028</checksum>
<open-checksum type="sha512">2800009c0ae98f5ff2e62dc9ecc855fb0bfd30f66f330ef2e5c128de9e5a7043940801f5ee75aadf4e621ffdd95e1cabb6b7d8fa6ff145ef184cc19137c794cb</open-checksum>
<location href="repodata/c0a11b349eddb321ef6ee46777635543b6ea5abb34b2f83059529c33143dd6a6de4473e9bc7d4c46780e8d603c54f727cd05bc0a5b624673f47ca89ef61be028-filelists.xml.gz"/>
<timestamp>1619710461</timestamp>
<size>796</size>
<open-size>2464</open-size>
</data>
<data type="other">
<checksum type="sha512">6964bafac776c978667be4f3b1afbfa9030f8cda2147c60e144b3fe5b1247454ca440301d3b8a72d7c1e560f7aac98ab64f9d470ca98dbabea9ec52688649057</checksum>
<open-checksum type="sha512">55f2390e6f239c88bed68a6afc30aff175005f054fad7ddbd480a1367c79cd6fd949a76bbea329705a9985bf679078037fce579511687195f4dd9a1c59b09e05</open-checksum>
<location href="repodata/6964bafac776c978667be4f3b1afbfa9030f8cda2147c60e144b3fe5b1247454ca440301d3b8a72d7c1e560f7aac98ab64f9d470ca98dbabea9ec52688649057-other.xml.gz"/>
<timestamp>1619710461</timestamp>
<size>1933</size>
<open-size>6293</open-size>
</data>
</repomd>

View file

@ -0,0 +1,16 @@
-----BEGIN PGP SIGNATURE-----
iQIzBAABCgAdFiEEyVsyG2HojBgJxPdZ3crgRPeW7LAFAmCK0f0ACgkQ3crgRPeW
7LCr4Q/9F/LFUP3cJFB9AV9REM69GzEXI/U5FkZ1aSF4DM/LDB9ipqo4ls9DCfbO
tdX+TCiyT7Mc7AsYUDYHmZT9qKvdziTH53MrkiTrbsr7VilnqT8AAEmo7GSh5WWu
rStheCh/aE9zp81c2yiBvEYKLwJmEI8RAnP2sCExfRgOSDJuywo3Acm86HUbJz2+
cOUSnB+maKj0dUVZ0BRUjoe1WPndZLDvnDa2BFqfDEQ6GtUlanu/QF2+4ZL8AO5D
6UWHIJDZzpbIIJjrHiXACezzz2Txik5wHwEzo2rzi9gqWbdT9YneaIqHircBNdVf
eBa5eMSPVlfG4ohTEfDcmiucNuf6uML2GooyRAH4Mg/W+s3vNiC0SILrnu4NcFuX
FDw5VmVOayTuPX7HbCu6K9vnZhqIXYwb/3R+xMHMpc7oRcdJh8rPLAksL+yWbXS2
NaDv3JX9Jrk1gIVrImkGe3fy3tEn9TbwJShYuGswWe+nq4SDrm+JCojBTKTwL1ju
IM3Oy9dlaqsg8c0+sO5HoH18j4/Wd2BAVjQqs6GSnnbrd0yq7Xba0ahNSJss42JF
gbsWKLJBLGMHXp7v5oBaP4VR+xP9wDiWWrZhICqfEoWZRHxDyLgL61W7+Au9sgQs
xBkXTyh+axDREPGjxnhXWpVBTeW7LrlDIZo/OWGsAFTJ5Fljgl4=
=odTj
-----END PGP SIGNATURE-----

Binary file not shown.

Binary file not shown.

View file

@ -0,0 +1,29 @@
[libnvidia-container]
name=libnvidia-container
baseurl=https://nvidia.github.io/libnvidia-container/centos7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/libnvidia-container/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-container-runtime]
name=nvidia-container-runtime
baseurl=https://nvidia.github.io/nvidia-container-runtime/centos7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-container-runtime/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt
[nvidia-docker]
name=nvidia-docker
baseurl=https://nvidia.github.io/nvidia-docker/centos7/$basearch
repo_gpgcheck=1
gpgcheck=0
enabled=1
gpgkey=https://nvidia.github.io/nvidia-docker/gpgkey
sslverify=1
sslcacert=/etc/pki/tls/certs/ca-bundle.crt

Some files were not shown because too many files have changed in this diff Show more