You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You will additionally need to install NVIDIA-Docker (https://github.com/NVIDIA/nvidia-docker) if you want GPU support else you can use the following commands with vanilla docker.
32
+
If you want GPU support you will need to install NVIDIA Container Toolkit from: https://docs.nvidia.com/datacenter/cloud-native/container-toolkit/install-guide.html and Docker >= _19.03_
33
33
34
34
```
35
-
nvidia-docker run -v $(pwd)/tests:/app/Probe-Ably/configurations -p 8031:8031 -it probe-ably bash
35
+
docker run --gpus all -v $(pwd):/app/Probe-Ably/configurations -p 8031:8031 -it aisystems/probe-ably bash
36
36
```
37
+
38
+
The Docker container exposes `/app/Probe-Ably/configurations` volume for external data facilitating the load of configurations file along with `8031` port.
0 commit comments