Skip to content
This repository was archived by the owner on Jan 22, 2024. It is now read-only.

Commit 771a199

Browse files
committed
Update changelog for 1.0.0~rc.2
1 parent 9fdb5f6 commit 771a199

File tree

4 files changed

+29
-18
lines changed

4 files changed

+29
-18
lines changed

README.md

Lines changed: 13 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -13,41 +13,37 @@ A good place to start is to understand [why NVIDIA Docker](https://github.com/NV
1313

1414
# Quick start
1515

16-
Assuming the NVIDIA drivers and Docker are properly installed (see [installation](https://github.com/NVIDIA/nvidia-docker/wiki/Installation)), there are two ways to install NVIDIA Docker:
16+
Assuming the NVIDIA drivers and Docker are properly installed (see [installation](https://github.com/NVIDIA/nvidia-docker/wiki/Installation))
1717

18-
### Plugin install (Recommended)
19-
20-
##### _Ubuntu distributions_
18+
#### _Ubuntu distributions_
2119
```sh
2220
# Install nvidia-docker and nvidia-docker-plugin
23-
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc/nvidia-docker_1.0.0.rc-1_amd64.deb
24-
sudo dpkg -i /tmp/nvidia-docker_1.0.0.rc-1_amd64.deb && rm /tmp/nvidia-docker*.deb
21+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc.2/nvidia-docker_1.0.0.rc.2-1_amd64.deb
22+
sudo dpkg -i /tmp/nvidia-docker*.deb && rm /tmp/nvidia-docker*.deb
2523

2624
# Test nvidia-smi
2725
nvidia-docker run --rm nvidia/cuda nvidia-smi
2826
```
2927

30-
##### _Other distributions_
28+
#### _CentOS distributions_
3129
```sh
3230
# Install nvidia-docker and nvidia-docker-plugin
33-
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc/nvidia-docker_1.0.0.rc_amd64.tar.xz
34-
sudo tar --strip-components=1 -C /usr/bin -xvf /tmp/nvidia-docker_1.0.0.rc_amd64.tar.xz && rm /tmp/nvidia-docker*.tar.xz
35-
36-
# Run nvidia-docker-plugin
37-
sudo -b nohup nvidia-docker-plugin > /tmp/nvidia-docker.log
31+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc.2/nvidia-docker-1.0.0.rc.2-1.x86_64.rpm
32+
sudo rpm -i /tmp/nvidia-docker*.rpm && rm /tmp/nvidia-docker*.rpm
33+
sudo systemctl start nvidia-docker
3834

3935
# Test nvidia-smi
4036
nvidia-docker run --rm nvidia/cuda nvidia-smi
4137
```
4238

43-
### Standalone install
39+
#### _Other distributions_
4440
```sh
4541
# Install nvidia-docker and nvidia-docker-plugin
46-
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc/nvidia-docker_1.0.0.rc_amd64.tar.xz
47-
sudo tar --strip-components=1 -C /usr/bin -xvf /tmp/nvidia-docker_1.0.0.rc_amd64.tar.xz && rm /tmp/nvidia-docker*.tar.xz
42+
wget -P /tmp https://github.com/NVIDIA/nvidia-docker/releases/download/v1.0.0-rc.2/nvidia-docker_1.0.0.rc.2_amd64.tar.xz
43+
sudo tar --strip-components=1 -C /usr/bin -xvf /tmp/nvidia-docker*.tar.xz && rm /tmp/nvidia-docker*.tar.xz
4844

49-
# One-time setup
50-
sudo nvidia-docker volume setup
45+
# Run nvidia-docker-plugin
46+
sudo -b nohup nvidia-docker-plugin > /tmp/nvidia-docker.log
5147

5248
# Test nvidia-smi
5349
nvidia-docker run --rm nvidia/cuda nvidia-smi

tools/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ bindir ?= $(exec_prefix)/bin
99
CR_NAME := NVIDIA CORPORATION
1010
CR_EMAIL := [email protected]
1111
PKG_NAME := nvidia-docker
12-
PKG_VERS := 1.0.0~rc
12+
PKG_VERS := 1.0.0~rc.2
1313
PKG_REV := 1
1414
ifneq ($(MAKECMDGOALS),rpm)
1515
PKG_ARCH := amd64

tools/build/deb/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
nvidia-docker (1.0.0~rc.2-1) trusty; urgency=low
2+
3+
* Allow UUIDs to be used in NV_GPU and docker/cli RestAPI endpoint
4+
* Change the plugin usage with version information (Closes: #90)
5+
* Remove the volume setup command (Closes: #96)
6+
* Add support for the Pascal architecture
7+
8+
-- NVIDIA CORPORATION <[email protected]> Sat, 28 May 2016 00:18:44 +0000
9+
110
nvidia-docker (1.0.0~rc-1) trusty; urgency=low
211

312
* Add /docker/cli/json RestAPI endpoint (Closes: #39, #91)

tools/build/rpm/SPECS/nvidia-docker.spec

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,12 @@ fi
6969
%systemd_postun_with_restart %{name}
7070

7171
%changelog
72+
* Sat May 28 2016 NVIDIA CORPORATION <[email protected]> 1.0.0~rc.2-1
73+
- Allow UUIDs to be used in NV_GPU and docker/cli RestAPI endpoint
74+
- Change the plugin usage with version information (Closes: #90)
75+
- Remove the volume setup command (Closes: #96)
76+
- Add support for the Pascal architecture
77+
7278
* Tue May 03 2016 NVIDIA CORPORATION <[email protected]> 1.0.0~rc-1
7379
- Add /docker/cli/json RestAPI endpoint (Closes: #39, #91)
7480
- Fix support for Docker 1.9 (Closes: #83)

0 commit comments

Comments
 (0)