Skip to content
This repository was archived by the owner on May 19, 2023. It is now read-only.

Commit 3226b33

Browse files
committed
update to latest .run_in_rapids.sh for docker image
1 parent dd620f4 commit 3226b33

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

docker/.run_in_rapids.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/bin/bash
2-
source activate rapids
2+
. /opt/conda/etc/profile.d/conda.sh
3+
conda activate rapids
34
exec "$@"
+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
#!/bin/bash
2-
source activate clx
3-
# echo "source activate clx" >> ~/.bashrc
4-
/clx/docker/start_jupyter.sh > /dev/null
5-
exec "$@"
2+
. /opt/conda/etc/profile.d/conda.sh
3+
conda activate rapids
4+
/rapids/utils/start_jupyter.sh > /dev/null
5+
echo "Notebook server successfully started!"
6+
echo "To access visit http://localhost:8888 on your host machine."
7+
echo 'Ensure the following arguments to "docker run" are added to expose the server ports to your host machine:
8+
-p 8888:8888 -p 8787:8787 -p 8786:8786'
9+
exec "$@"

0 commit comments

Comments
 (0)