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
Copy file name to clipboardExpand all lines: docs/run-in-docker.md
+10-4Lines changed: 10 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -54,18 +54,24 @@ Add a new group with GID 5454 which matches the user and group ID used in the rt
54
54
This will create a self-signed SSL certificate called **rtcloud.crt** to allow encrypted communication with the projectInterface. You will need to install the rtcloud.crt certificate in your browser for trusted communication. The certificate will be created in location:<br> /var/lib/docker/volumes/certs/\_data/rtcloud.crt
55
55
56
56
IP=`curl https://ifconfig.co/`
57
-
docker run --rm -v certs:/rt-cloud/certs brainiak/rtcloud:1.0 bash scripts/make-sslcert.sh -ip $IP
58
-
57
+
docker run --rm -v certs:/rt-cloud/certs brainiak/rtcloud:1.0 scripts/make-sslcert.sh -ip $IP
59
58
60
59
**Add user for web interface**<br>
61
60
The web connection to projectInterface requires a user/password to authenticate. You can create a username and password with this command.
#### Alternate simpler calls using the run-docker.sh script
73
+
The rt-cloud githup repo has a run-docker.sh script that encapsulates the docker specific call parameters in the above calls. This can make it simpler to call the functions you want within the docker image. The following show the previous commands using the run-docker.sh helper script.
0 commit comments