From 5ff1b3423b33b7776048f1cc5f690ca6abf107bd Mon Sep 17 00:00:00 2001 From: Isaac Yang Date: Fri, 8 Dec 2017 15:53:45 -0800 Subject: [PATCH] Remove docker related documentation --- README.md | 1 - docs/BuildDigits.md | 4 +--- docs/DockerInstall.md | 29 ----------------------------- docs/UbuntuInstall.md | 2 -- 4 files changed, 1 insertion(+), 35 deletions(-) delete mode 100644 docs/DockerInstall.md diff --git a/README.md b/README.md index 428e61018..082ec92c6 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,6 @@ The currently supported frameworks are: Caffe, Torch, and Tensorflow. | Installation method | Supported platform[s] | Available versions | Instructions | | --- | --- | --- | --- | -| Docker | Linux | [DockerHub tags](https://hub.docker.com/r/nvidia/digits/tags/) | [nvidia-docker wiki](https://github.com/NVIDIA/nvidia-docker/wiki/DIGITS) | | Source | Ubuntu 14.04, 16.04 | [GitHub tags](https://github.com/NVIDIA/DIGITS/releases) | [docs/BuildDigits.md](docs/BuildDigits.md) | diff --git a/docs/BuildDigits.md b/docs/BuildDigits.md index f94c61679..d0e7c19a1 100644 --- a/docs/BuildDigits.md +++ b/docs/BuildDigits.md @@ -1,8 +1,6 @@ # Building DIGITS -The preferred installation method for DIGITS as of version 6 is using a dockerfile and installing it as a docker container. To install DIGITS with Docker, please follow [this guide](DockerInstall.md) - -If those don't work for you for some reason, the following instructions will walk you through building the latest version of DIGITS from source. +The following instructions will walk you through building the latest version of DIGITS from source. **These instructions are for installation on Ubuntu 14.04 and 16.04.** Alternatively, see [this guide](BuildDigitsWindows.md) for setting up DIGITS and Caffe on Windows machines. diff --git a/docs/DockerInstall.md b/docs/DockerInstall.md deleted file mode 100644 index 99fb2f18a..000000000 --- a/docs/DockerInstall.md +++ /dev/null @@ -1,29 +0,0 @@ -# Docker Installation - -## Installing Docker -To install docker, follow the official guide [here](https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/). - -## Installing Nvidia-Docker -To run DIGITS smoothly, Nvidia Docker must be installed. Follow [this guide](https://github.com/NVIDIA/nvidia-docker#quick-start) to install Nvidia Docker. - -## Installing DIGITS with Docker -To fetch the latest DIGITS's docker image, run the following: - -```bash -docker pull nvidia/digits:latest -``` - -To fetch DIGITS 6 RC, run the following: - -```bash -docker pull nvidia/digits:6.0-rc -``` - -## Running DIGITS on Nvidia Docker -To run DIGITS with Nvidia Docker, use the following command: - -```bash -nvidia-docker run -v :/data/ -p 5000:5000 nvidia/digits:latest -``` - -where `` is where you have stored data sets or other files necessary for DIGITS to use on your system. diff --git a/docs/UbuntuInstall.md b/docs/UbuntuInstall.md index d59f83718..2f6db73ce 100644 --- a/docs/UbuntuInstall.md +++ b/docs/UbuntuInstall.md @@ -1,7 +1,5 @@ # Ubuntu Installation -Starting from DIGITS 6, the preferred method of installation is using Docker and installing DIGITS inside a Docker container. Instructions to do so are [here](DockerInstall.md). If Docker don't meet your needs, then you can follow [these instructions](BuildDigits.md) to build DIGITS and its dependencies from source. - ## Getting started After getting DIGITS set up, the DIGITS server should now be running at `http://localhost:5000`.