summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/nncc/getting_started.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/nncc/getting_started.md b/docs/nncc/getting_started.md
index 685f5af45..69076ee2c 100644
--- a/docs/nncc/getting_started.md
+++ b/docs/nncc/getting_started.md
@@ -10,20 +10,20 @@ _nncc_ provides ``Dockerfile`` in order to make it easy to setup development env
One may build ``nncc`` docker image with the following command:
```
-nncc$ cat Dockerfile | docker build -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build -t nncc -
...
```
By default, this ``Dockerfile`` uses "archive.ubuntu.com" which may be quite slow. One may use mirror site via ``UBUNTU_MIRROR`` variable.
For example, one may enable the use of ``kr.archive.ubuntu.com`` via the following command
```
-nncc$ cat Dockerfile | docker build --build-arg UBUNTU_MIRROR="kr.archive.ubuntu.com" -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build --build-arg UBUNTU_MIRROR="kr.archive.ubuntu.com" -t nncc -
...
```
One who works behind proxy should provide proxy configuration via the following command:
```
-nncc$ cat Dockerfile | docker build --build-arg HTTP_PROXY=<HTTP proxy address> --build-arg HTTPS_PROXY=<HTTPS proxy address> -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build --build-arg HTTP_PROXY=<HTTP proxy address> --build-arg HTTPS_PROXY=<HTTPS proxy address> -t nncc -
...
```
One may use simplified command if ``HTTP_PROXY`` and ``HTTPS_PROXY`` environment variables are already set:
@@ -33,13 +33,13 @@ nncc$ export
declare -x HTTP_PROXY=...
declare -x HTTPS_PROXY=...
...
-nncc$ cat Dockerfile | docker build --build-arg HTTP_PROXY --build-arg HTTPS_PROXY -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build --build-arg HTTP_PROXY --build-arg HTTPS_PROXY -t nncc -
...
```
Note that these configurations are orthogonal to each other. One may freely combine these options as follows:
```
-nncc$ cat Dockerfile | docker build --build-arg HTTP_PROXY --build-arg HTTPS_PROXY --build-arg UBUNTU_MIRROR="kr.archive.ubuntu.com" -t nncc -
+nncc$ cat infra/nncc/Dockerfile | docker build --build-arg HTTP_PROXY --build-arg HTTPS_PROXY --build-arg UBUNTU_MIRROR="kr.archive.ubuntu.com" -t nncc -
```
One may easily build _nncc_ with the following command once ``nncc`` docker image is built.