Skip to content

Commit

Permalink
fix: change the port number of the proxy server and add example for R…
Browse files Browse the repository at this point in the history
…TX 4090 users (#2)
  • Loading branch information
akawincent authored Mar 29, 2024
1 parent ecf5295 commit b697dfd
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Custom_Containerized_Environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@ RUN eval "$(conda shell.bash hook)" && \
pip install --requirement /tmp/pip_requirements.txt
```

If you want to adapt your custom containerized environment for NVIDIA RTX 4090, updated CUDA drivers and PyTorch versions are required. You can replace the `FROM` instruction as follow:

```Dockerfile
FROM determinedai/environments:cuda-11.8-pytorch-2.0-gpu-mpi-0.30.1
```

Here are some other examples:

[svox2](./Example_Envs/svox2/)
Expand All @@ -60,7 +66,7 @@ Don't forget the dot "." at the end of the command!
If the Dockerfile building process needs international internet access, you can add build arguments to use the public proxy services:

```bash
DOCKER_BUILDKIT=0 docker build -t my_image:v1.0 --build-arg http_proxy=http://10.0.1.68:8889 --build-arg https_proxy=http://10.0.1.68:8889 .
DOCKER_BUILDKIT=0 docker build -t my_image:v1.0 --build-arg http_proxy=http://10.0.1.68:18889 --build-arg https_proxy=http://10.0.1.68:18889 .
```

The status of our public proxies can be monitored here: [Grafana - v2ray-dashboard](https://grafana.cvgl.lab/d/CCSvIIEZz/v2ray-dashboard)
Expand Down

0 comments on commit b697dfd

Please sign in to comment.