We removed our free Sandbox April 25th.
You can read more on our blog.
SSH Access¶
How to SSH to a Service¶
You can SSH to any service by running the dotcloud ssh command like so:
$ dotcloud ssh ramen.www
For scaled services dotcloud ssh connects to the first instance but you can connect to a specific instance by appending its number:
$ dotcloud ssh ramen.www.1
The first instance is .0.
How to Run a Single Command¶
You can run a single command in a service with the dotcloud run command:
$ dotcloud run ramen.www -- ls -la
Like for ssh you can append the instance number to run a command on a specific instance.
Note
Note the double-dash after the service name. This will make sure that any extra dash-argument will be passed as is to the service, instead of being interpreted by the CLI.
