Find IP Address of docker:
$ docker inspect 77e97f109049 | more #Container ID or Name
$ docker inspect 77e97f109049 | more #Container ID or Name
curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash -
sudo apt-get install --yes nodejs
node: command not found
chances are likely you need to link your binary:sudo ln -s /usr/bin/nodejs /usr/bin/node
$ sudo docker attach 665b4a1e17b6 #by ID and then press enter
or
$ sudo docker attach loving_heisenberg #by Name and the press enter
2. If the container was not started in bash mode$ sudo docker exec -i -t 665b4a1e17b6 bash #by ID
or
$ sudo docker exec -i -t loving_heisenberg bash #by Name
Sharing some useful links that will help customers architect Azure OpenAI solution using the best practices: (1) Azure OpenAI Landing Zone r...