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
This is probably a quick yes/no. Is there a way to change the application that gets launched by Coiled Notebooks?
I know some hosted notebook platforms just expect an application to run on port 8888 for proxying, and let you specify a custom startup command. We often see folks using VS Code Server in place of Jupyter on these services.
Is this viable on Coiled?
The text was updated successfully, but these errors were encountered:
Perhaps as a follow up then is there a way to SSH through to the container on the VM using regular SSH (not coiled cluster ssh). That way it could be accessed via the VS Code SSH extension.
is there a way to SSH through to the container on the VM using regular SSH
Yes!
Make a cluster, make sure you allow ingress for SSH. For example coiled.Cluster(..., allow_ssh_from="me") or any coiled run ... will have 22 open ingress coming from your IP address.
Add the SSH key for this cluster to your local agent by running coiled cluster ssh --add-key (you can also specify cluster by ID or name in this command, it defaults to the latest cluster if you don't specify).
Use coiled cluster address to get the address, which could (for example) be plugged directly into an SSH command like ssh "ubuntu@$(coiled cluster address)".
When you're done, coiled cluster ssh --delete-key will remove the key from your local agent if you care about that.
This is probably a quick yes/no. Is there a way to change the application that gets launched by Coiled Notebooks?
I know some hosted notebook platforms just expect an application to run on port
8888
for proxying, and let you specify a custom startup command. We often see folks using VS Code Server in place of Jupyter on these services.Is this viable on Coiled?
The text was updated successfully, but these errors were encountered: