Skip to content

Instantly share code, notes, and snippets.

@tomotaka
Created August 1, 2013 08:37
Show Gist options
  • Save tomotaka/6129583 to your computer and use it in GitHub Desktop.
Save tomotaka/6129583 to your computer and use it in GitHub Desktop.
vagrant digital ocean
# coding: utf-8
Vagrant.configure("2") do |config|
config.vm.hostname = "digital-ocean-test"
config.ssh.private_key_path = "~/.ssh/id_rsa"
config.vm.box = "digital_ocean"
config.vm.provider :digital_ocean do |provider|
provider.client_id = "YOUR CLIENT ID"
provider.api_key = "YOUR API KEY"
provider.image = "CentOS 6.4 x64"
provider.size = "2GB"
provider.region = "San Francisco 1"
end
end
@tomotaka
Copy link
Author

tomotaka commented Aug 1, 2013

you can launch with: vagrant up --provider=digital_ocean

@tomotaka
Copy link
Author

tomotaka commented Aug 1, 2013

images:

CentOS 5.8 x64
CentOS 5.8 x32
Debian 6.0 x64
Debian 6.0 x32
Ubuntu 10.04 x64
Ubuntu 10.04 x32
Fedora 17 x32
Fedora 17 x32 Desktop
Fedora 17 x64 Desktop
Fedora 17 x64
Ubuntu 12.04 x64
Ubuntu 12.04 x32
Debian 7.0 x32
Debian 7.0 x64
Ubuntu 13.04 x32
Ubuntu 13.04 x64
Arch Linux 2013.05 x64
Arch Linux 2013.05 x32
CentOS 6.4 x32
Ubuntu 12.10 x32
LAMP on Ubuntu 12.04
Ruby on Rails on Ubuntu 12.10 (Nginx + Unicorn)
Ubuntu 12.10 x64
Ubuntu 12.10 x64 Desktop
Redmine on Ubuntu 12.04
Wordpress on Ubuntu 12.10
CentOS 6.4 x64

@tomotaka
Copy link
Author

tomotaka commented Aug 1, 2013

need '$ brew install curl-ca-bundle' and cut-and-paste 'export SSL_CERT_FILE=/usr/local/opt/curl-ca-bundle/share/ca-bundle.crt' to .zshrc and activate it

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment