Transfer Away Dotcloud Data Using FTP

If you have data on Dotcloud server that you want to transfer away via FTP directly, you can’t, because Dotcloud don’t provide FTP to the instances.

This is about the best way I know of transfering data, first by transferring to your own FTP server:

1
2
3
4
5
6
7
8
// SSH to your dotcloud instance
dotcloud run www

// ZIP the data eg. html
tar -C $HOME -czf html.tar.gz ./current/html

// curl
curl -u myusername:mypassword -sST html.tar.gz ftp://myserver.com

Comments