A command-line utility for managing DigitalOcean infrastructure via the DigitalOcean API v2
This utility is in beta - it may do anything up to, and including, eating your laundry. You can check the request being sent to DigitalOcean without actually sending by using the docli --nosend --verbose <command>
(which can be shortened to docli -nv <command>
)
If you are on Arch linux, you can install from the AUR via the docli-bin
or docli-git
(-git
requires a nightly Rust compiler and git
).
Download the tar.gz, untar, and copy to somewhere in your $PATH
(if on OS X, replace linux
with osx
)
$ wget http://wod.twentyfives.net/bin/docli/docli-0.1.0-beta2-x86_64-linux.tar.gz
$ tar xvf docli-0.1.0-beta2-x86_64-linux.tar.gz
$ cp docli-0.1.0-beta2-x86_64-linux/bin/docli ~/.bin
In the example ~/.bin
is in $PATH
I have not tried compiling on Windows [yet]. Feel free to clone the repository and attempt to compile with a nightly Rust compiler.
If you'd rather compile from source (takes about 2 minutes on a decent machine) use the following:
Note: Currently, you must use Rust nightly in order to compile.
$ git clone https://github.com/kbknapp/docli-rs
$ cd docli-rs
$ cargo build --release
$ cp target/release/docli ~/.bin
You can run docli
from the command line and along with various subcommands to perform actions on your DigitalOcean infrastructure. In order to see what commands are available, run docli --help
or docli <command> --help
docli v0.1.0
Kevin K. <kbknapp@gmail.com>
A utility for managing DigitalOcean infrastructure
USAGE:
docli [FLAGS] [OPTIONS] [SUBCOMMANDS]
FLAGS:
-h, --help Prints help information
-n, --nosend Does NOT send request over the network (useful with --verbose)
--version Prints version information
-v, --verbose Displays the request being sent to server and JSON reply
OPTIONS:
-t, --token <token> Digital Ocean Auth Token (Defaults to contents of DO_AUTH_TOKEN env var if omitted)
SUBCOMMANDS:
account Show account information and actions
dns Manage DNS records on a specific domain
domains Manage domains
droplet Manage a specific droplet
droplets Manage droplets
help Prints this message
image Manage images
list Get information from DigitalOcean about various sections
ssh-keys Manage SSH keys
In order to use the DigitalOcean v2 API (which is what docli
uses under the covers, you must generate a Personal Authentication Token. This token can then either be passed to docli
directly with --token <token>
or you can set a DO_AUTH_TOKEN
environmental variable before using docli
. To do so using Linux or OSX, open a terminal and run the following (test with docli account
which lists your account information):
$ export DO_AUTH_TOKEN=<PASTE YOUR TOKEN HERE>
$ docli account
Personal Auth Token's can be Read/Write, or Read Only/Write Only. In order to process destructive API calls (i.e. ones that modify existing information) you must have a token with Write priviledges.
To generate a new Personal Auth Token see the following DigitalOcean details
Contributions are always welcome! And there is a multitude of ways in which you can help depending on what you like to do, or are good at. Anything from documentation, code cleanup, issue completion, new features, you name it, even filing issues is contributing and greatly appreciated!
NOTE: One of the best ways to help right now is to simply use the utility and report issues!
- Fork
docli
- Clone your fork (
git clone https://github.com/$YOUR_USERNAME/docli-rs && cd docli-rs
) - Create new branch (
git checkout -b new-branch
) - Make your changes, and commit (
git commit -am "your message"
)
- I use a conventional changelog format so I can update my changelog using clog
- Format your commit subject line using the following format:
TYPE(COMPONENT): MESSAGE
whereTYPE
is one of the following:feat
- A new featureimp
- An improvement to an existing featureperf
- A performance improvementdocs
- Changes to documentation onlytests
- Changes to the testing framework or tests onlyfix
- A bug fixrefactor
- Code functionality doesn't change, but underlying structure maystyle
- Stylistic changes only, no functionality changeswip
- A work in progress commit (Should typically begit rebase
'ed away)chore
- Catch all or things that have to do with the build system, etc
- The
COMPONENT
is optional, and may be a single file, directory, or logical component. Can be omitted if commit applies globally
git rebase
into concise commits and remove--fixup
s (git rebase -i HEAD~NUM
whereNUM
is number of commits back)- Push your changes back to your fork (
git push origin $your-branch
) - Create a pull request! (You can also create the pull request first, and we'll merge when ready. This a good way to discuss proposed changes.)