├── .gitignore ├── Godeps ├── Godeps.json ├── Readme └── _workspace │ ├── .gitignore │ └── src │ ├── code.google.com │ └── p │ │ └── goauth2 │ │ └── oauth │ │ ├── example │ │ └── oauthreq.go │ │ ├── jwt │ │ ├── example │ │ │ ├── example.client_secrets.json │ │ │ ├── example.pem │ │ │ └── main.go │ │ ├── jwt.go │ │ └── jwt_test.go │ │ ├── oauth.go │ │ └── oauth_test.go │ ├── github.com │ ├── codegangsta │ │ └── cli │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── app.go │ │ │ ├── app_test.go │ │ │ ├── autocomplete │ │ │ ├── bash_autocomplete │ │ │ └── zsh_autocomplete │ │ │ ├── cli.go │ │ │ ├── cli_test.go │ │ │ ├── command.go │ │ │ ├── command_test.go │ │ │ ├── context.go │ │ │ ├── context_test.go │ │ │ ├── flag.go │ │ │ ├── flag_test.go │ │ │ ├── help.go │ │ │ ├── help_test.go │ │ │ └── helpers_test.go │ ├── davecgh │ │ └── go-spew │ │ │ └── spew │ │ │ ├── bypass.go │ │ │ ├── bypasssafe.go │ │ │ ├── common.go │ │ │ ├── common_test.go │ │ │ ├── config.go │ │ │ ├── doc.go │ │ │ ├── dump.go │ │ │ ├── dump_test.go │ │ │ ├── dumpcgo_test.go │ │ │ ├── dumpnocgo_test.go │ │ │ ├── example_test.go │ │ │ ├── format.go │ │ │ ├── format_test.go │ │ │ ├── internal_test.go │ │ │ ├── internalunsafe_test.go │ │ │ ├── spew.go │ │ │ ├── spew_test.go │ │ │ └── testdata │ │ │ └── dumpcgo.go │ ├── digitalocean │ │ └── godo │ │ │ ├── LICENSE.txt │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── action.go │ │ │ ├── action_request.go │ │ │ ├── action_request_test.go │ │ │ ├── action_test.go │ │ │ ├── doc.go │ │ │ ├── domains.go │ │ │ ├── domains_test.go │ │ │ ├── droplet_actions.go │ │ │ ├── droplet_actions_test.go │ │ │ ├── droplets.go │ │ │ ├── droplets_test.go │ │ │ ├── godo.go │ │ │ ├── godo_test.go │ │ │ ├── image_actions.go │ │ │ ├── image_actions_test.go │ │ │ ├── images.go │ │ │ ├── images_test.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── links.go │ │ │ ├── links_test.go │ │ │ ├── regions.go │ │ │ ├── regions_test.go │ │ │ ├── sizes.go │ │ │ ├── sizes_test.go │ │ │ ├── strings.go │ │ │ ├── timestamp.go │ │ │ ├── timestamp_test.go │ │ │ └── util │ │ │ └── droplet.go │ ├── docker │ │ ├── docker │ │ │ └── pkg │ │ │ │ └── term │ │ │ │ ├── tc_linux_cgo.go │ │ │ │ ├── tc_other.go │ │ │ │ ├── term.go │ │ │ │ ├── term_windows.go │ │ │ │ ├── termios_darwin.go │ │ │ │ ├── termios_freebsd.go │ │ │ │ ├── termios_linux.go │ │ │ │ └── windows │ │ │ │ ├── ansi_reader.go │ │ │ │ ├── ansi_writer.go │ │ │ │ ├── console.go │ │ │ │ ├── windows.go │ │ │ │ └── windows_test.go │ │ └── machine │ │ │ └── libmachine │ │ │ ├── auth │ │ │ └── auth.go │ │ │ ├── cert │ │ │ ├── bootstrap.go │ │ │ ├── cert.go │ │ │ ├── cert_path_info.go │ │ │ └── cert_test.go │ │ │ ├── drivers │ │ │ ├── amazonec2 │ │ │ │ ├── amazonec2.go │ │ │ │ ├── amazonec2_test.go │ │ │ │ ├── amz │ │ │ │ │ ├── auth.go │ │ │ │ │ ├── block_device_mapping.go │ │ │ │ │ ├── describe_instances.go │ │ │ │ │ ├── describe_keypairs.go │ │ │ │ │ ├── describe_security_groups.go │ │ │ │ │ ├── describe_spot_instance_requests.go │ │ │ │ │ ├── describe_subnets.go │ │ │ │ │ ├── ec2.go │ │ │ │ │ ├── error.go │ │ │ │ │ ├── error_codes.go │ │ │ │ │ ├── filter.go │ │ │ │ │ ├── ip_permission.go │ │ │ │ │ ├── keypair.go │ │ │ │ │ ├── security_group.go │ │ │ │ │ └── tags.go │ │ │ │ └── utils.go │ │ │ ├── azure │ │ │ │ └── azure.go │ │ │ ├── base.go │ │ │ ├── digitalocean │ │ │ │ └── digitalocean.go │ │ │ ├── driver_options_mock.go │ │ │ ├── drivermaker │ │ │ │ └── maker.go │ │ │ ├── drivers.go │ │ │ ├── drivers_test.go │ │ │ ├── exoscale │ │ │ │ └── exoscale.go │ │ │ ├── fakedriver │ │ │ │ └── fakedriver.go │ │ │ ├── flag_sort.go │ │ │ ├── generic │ │ │ │ └── generic.go │ │ │ ├── google │ │ │ │ ├── auth_util.go │ │ │ │ ├── compute_util.go │ │ │ │ └── google.go │ │ │ ├── hyperv │ │ │ │ ├── hyperv.go │ │ │ │ ├── hyperv_windows.go │ │ │ │ └── powershell_windows.go │ │ │ ├── none │ │ │ │ └── none.go │ │ │ ├── openstack │ │ │ │ ├── client.go │ │ │ │ └── openstack.go │ │ │ ├── rackspace │ │ │ │ ├── client.go │ │ │ │ └── rackspace.go │ │ │ ├── softlayer │ │ │ │ ├── driver.go │ │ │ │ ├── driver_test.go │ │ │ │ └── softlayer.go │ │ │ ├── utils.go │ │ │ ├── virtualbox │ │ │ │ ├── .virtualbox.go.swo │ │ │ │ ├── disk.go │ │ │ │ ├── disk_test.go │ │ │ │ ├── network.go │ │ │ │ ├── vbm.go │ │ │ │ ├── virtualbox.go │ │ │ │ ├── virtualbox_test.go │ │ │ │ ├── vm.go │ │ │ │ └── vm_test.go │ │ │ ├── vmwarefusion │ │ │ │ ├── fusion_darwin.go │ │ │ │ ├── vmrun_darwin.go │ │ │ │ ├── vmwarefusion.go │ │ │ │ └── vmx_darwin.go │ │ │ ├── vmwarevcloudair │ │ │ │ └── vcloudair.go │ │ │ └── vmwarevsphere │ │ │ │ ├── errors │ │ │ │ ├── config_error.go │ │ │ │ ├── datastore_error.go │ │ │ │ ├── errors.go │ │ │ │ ├── govc_error.go │ │ │ │ ├── guest_error.go │ │ │ │ ├── login_error.go │ │ │ │ ├── state_error.go │ │ │ │ └── vm_error.go │ │ │ │ ├── govc.go │ │ │ │ ├── vc_conn.go │ │ │ │ └── vsphere.go │ │ │ ├── engine │ │ │ └── engine.go │ │ │ ├── examples │ │ │ └── vbox_create.go │ │ │ ├── host │ │ │ ├── get_default_test_host.go │ │ │ ├── host.go │ │ │ ├── host_test.go │ │ │ ├── host_v0.go │ │ │ ├── migrate.go │ │ │ ├── migrate_v0_v1.go │ │ │ └── migrate_v0_v1_test.go │ │ │ ├── log │ │ │ ├── log.go │ │ │ ├── log_test.go │ │ │ ├── standard.go │ │ │ └── terminal.go │ │ │ ├── main.go │ │ │ ├── mcnerror │ │ │ └── errors.go │ │ │ ├── mcnutils │ │ │ ├── b2d.go │ │ │ ├── b2d_test.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ │ ├── persist │ │ │ ├── filestore.go │ │ │ ├── filestore_test.go │ │ │ └── store.go │ │ │ ├── provider │ │ │ └── provider.go │ │ │ ├── provision │ │ │ ├── .boot2docker.go.swo │ │ │ ├── boot2docker.go │ │ │ ├── centos.go │ │ │ ├── centos_test.go │ │ │ ├── configure_swarm.go │ │ │ ├── debian.go │ │ │ ├── engine_config_context.go │ │ │ ├── errors.go │ │ │ ├── fedora.go │ │ │ ├── fedora_test.go │ │ │ ├── generic.go │ │ │ ├── os_release.go │ │ │ ├── os_release_test.go │ │ │ ├── pkgaction │ │ │ │ ├── action.go │ │ │ │ └── action_test.go │ │ │ ├── provisioner.go │ │ │ ├── rancheros.go │ │ │ ├── redhat.go │ │ │ ├── redhat_test.go │ │ │ ├── ubuntu.go │ │ │ ├── utils.go │ │ │ └── utils_test.go │ │ │ ├── ssh │ │ │ ├── client.go │ │ │ ├── keys.go │ │ │ ├── keys_test.go │ │ │ ├── ssh.go │ │ │ └── ssh_test.go │ │ │ ├── state │ │ │ ├── state.go │ │ │ └── state_test.go │ │ │ ├── swarm │ │ │ └── swarm.go │ │ │ └── version │ │ │ └── version.go │ ├── google │ │ └── go-querystring │ │ │ └── query │ │ │ ├── encode.go │ │ │ └── encode_test.go │ └── tent │ │ └── http-link-go │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── link.go │ │ └── link_test.go │ ├── golang.org │ └── x │ │ └── crypto │ │ └── ssh │ │ ├── agent │ │ ├── client.go │ │ ├── client_test.go │ │ ├── forward.go │ │ ├── keyring.go │ │ ├── server.go │ │ ├── server_test.go │ │ └── testdata_test.go │ │ ├── benchmark_test.go │ │ ├── buffer.go │ │ ├── buffer_test.go │ │ ├── certs.go │ │ ├── certs_test.go │ │ ├── channel.go │ │ ├── cipher.go │ │ ├── cipher_test.go │ │ ├── client.go │ │ ├── client_auth.go │ │ ├── client_auth_test.go │ │ ├── client_test.go │ │ ├── common.go │ │ ├── connection.go │ │ ├── doc.go │ │ ├── example_test.go │ │ ├── handshake.go │ │ ├── handshake_test.go │ │ ├── kex.go │ │ ├── kex_test.go │ │ ├── keys.go │ │ ├── keys_test.go │ │ ├── mac.go │ │ ├── mempipe_test.go │ │ ├── messages.go │ │ ├── messages_test.go │ │ ├── mux.go │ │ ├── mux_test.go │ │ ├── server.go │ │ ├── session.go │ │ ├── session_test.go │ │ ├── tcpip.go │ │ ├── tcpip_test.go │ │ ├── terminal │ │ ├── terminal.go │ │ ├── terminal_test.go │ │ ├── util.go │ │ ├── util_bsd.go │ │ ├── util_linux.go │ │ └── util_windows.go │ │ ├── test │ │ ├── agent_unix_test.go │ │ ├── cert_test.go │ │ ├── doc.go │ │ ├── forward_unix_test.go │ │ ├── session_test.go │ │ ├── tcpip_test.go │ │ ├── test_unix_test.go │ │ └── testdata_test.go │ │ ├── testdata │ │ ├── doc.go │ │ └── keys.go │ │ ├── testdata_test.go │ │ ├── transport.go │ │ └── transport_test.go │ └── gopkg.in │ ├── yaml.v1 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go │ └── yaml.v2 │ ├── LICENSE │ ├── LICENSE.libyaml │ ├── README.md │ ├── apic.go │ ├── decode.go │ ├── decode_test.go │ ├── emitterc.go │ ├── encode.go │ ├── encode_test.go │ ├── parserc.go │ ├── readerc.go │ ├── resolve.go │ ├── scannerc.go │ ├── sorter.go │ ├── suite_test.go │ ├── writerc.go │ ├── yaml.go │ ├── yamlh.go │ └── yamlprivateh.go ├── LICENSE ├── Makefile ├── README.md ├── moby.go └── moby.yml /.gitignore: -------------------------------------------------------------------------------- 1 | moby 2 | store 3 | -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /Godeps/_workspace/.gitignore: -------------------------------------------------------------------------------- 1 | /pkg 2 | /bin 3 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/example/oauthreq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/example/oauthreq.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/example.client_secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/example.client_secrets.json -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/example.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/example.pem -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/example/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/jwt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/jwt.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/jwt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/jwt/jwt_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/oauth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/oauth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/code.google.com/p/goauth2/oauth/oauth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/code.google.com/p/goauth2/oauth/oauth_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/app.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/app_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/bash_autocomplete -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/autocomplete/zsh_autocomplete -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/cli.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/cli.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/cli_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/cli_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/command.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/command_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/command_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/context_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/flag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/flag.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/flag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/flag_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/help.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/help.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/help_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/help_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/codegangsta/cli/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/codegangsta/cli/helpers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypass.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypass.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypasssafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/bypasssafe.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/common_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/config.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dump_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dumpcgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dumpcgo_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dumpnocgo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/dumpnocgo_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/format_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/internal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/internal_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/internalunsafe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/internalunsafe_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/spew_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/davecgh/go-spew/spew/testdata/dumpcgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/davecgh/go-spew/spew/testdata/dumpcgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/LICENSE.txt -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/Makefile -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/action.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/action_request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/action_request.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/action_request_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/action_request_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/action_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/domains.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/domains.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/domains_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/domains_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/droplet_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/droplet_actions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/droplet_actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/droplet_actions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/droplets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/droplets.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/droplets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/droplets_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/godo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/godo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/godo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/godo_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/image_actions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/image_actions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/image_actions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/image_actions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/images.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/images.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/images_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/images_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/keys_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/links.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/links.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/links_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/links_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/regions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/regions.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/regions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/regions_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/sizes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/sizes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/sizes_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/sizes_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/strings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/strings.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/timestamp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/timestamp.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/timestamp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/timestamp_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/digitalocean/godo/util/droplet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/digitalocean/godo/util/droplet.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_linux_cgo.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/tc_other.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/term_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_freebsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/termios_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/ansi_reader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/ansi_reader.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/ansi_writer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/ansi_writer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/console.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/windows_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/docker/pkg/term/windows/windows_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/auth/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/auth/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/cert/bootstrap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/cert/bootstrap.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/cert/cert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/cert/cert.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/cert/cert_path_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/cert/cert_path_info.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/cert/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/cert/cert_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amazonec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amazonec2.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amazonec2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amazonec2_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/block_device_mapping.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/block_device_mapping.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_instances.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_instances.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_keypairs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_keypairs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_security_groups.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_security_groups.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_spot_instance_requests.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_spot_instance_requests.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_subnets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/describe_subnets.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/ec2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/ec2.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/error_codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/error_codes.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/filter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/filter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/ip_permission.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/ip_permission.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/keypair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/keypair.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/security_group.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/security_group.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/amz/tags.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/amazonec2/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/azure/azure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/azure/azure.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/base.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/base.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/digitalocean/digitalocean.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/digitalocean/digitalocean.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/driver_options_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/driver_options_mock.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/drivermaker/maker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/drivermaker/maker.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/drivers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/drivers.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/drivers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/drivers_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/exoscale/exoscale.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/exoscale/exoscale.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/fakedriver/fakedriver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/fakedriver/fakedriver.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/flag_sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/flag_sort.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/generic/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/generic/generic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/google/auth_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/google/auth_util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/google/compute_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/google/compute_util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/google/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/google/google.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/hyperv/hyperv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/hyperv/hyperv.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/hyperv/hyperv_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/hyperv/hyperv_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/hyperv/powershell_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/hyperv/powershell_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/none/none.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/none/none.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/openstack/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/openstack/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/openstack/openstack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/openstack/openstack.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/rackspace/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/rackspace/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/rackspace/rackspace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/rackspace/rackspace.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/softlayer/driver.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/softlayer/driver.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/softlayer/driver_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/softlayer/driver_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/softlayer/softlayer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/softlayer/softlayer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/.virtualbox.go.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/.virtualbox.go.swo -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/disk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/disk.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/disk_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/disk_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/network.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/vbm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/vbm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/virtualbox.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/virtualbox.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/virtualbox_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/virtualbox_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/vm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/vm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/vm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/virtualbox/vm_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarefusion/fusion_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarefusion/fusion_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarefusion/vmrun_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarefusion/vmrun_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarefusion/vmwarefusion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarefusion/vmwarefusion.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarefusion/vmx_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarefusion/vmx_darwin.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevcloudair/vcloudair.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevcloudair/vcloudair.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/config_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/config_error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/datastore_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/datastore_error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/govc_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/govc_error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/guest_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/guest_error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/login_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/login_error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/state_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/state_error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/vm_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/errors/vm_error.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/govc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/govc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/vc_conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/vc_conn.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/vsphere.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/drivers/vmwarevsphere/vsphere.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/engine/engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/engine/engine.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/examples/vbox_create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/examples/vbox_create.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host/get_default_test_host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host/get_default_test_host.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host/host.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host/host.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host/host_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host/host_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host/host_v0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host/host_v0.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host/migrate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host/migrate.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host/migrate_v0_v1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host/migrate_v0_v1.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/host/migrate_v0_v1_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/host/migrate_v0_v1_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/log/log.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/log/log_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/log/log_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/log/standard.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/log/standard.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/log/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/log/terminal.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/main.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnerror/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnerror/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnutils/b2d.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnutils/b2d.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnutils/b2d_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnutils/b2d_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnutils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnutils/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnutils/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/mcnutils/utils_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/persist/filestore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/persist/filestore.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/persist/filestore_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/persist/filestore_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/persist/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/persist/store.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provider/provider.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provider/provider.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/.boot2docker.go.swo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/.boot2docker.go.swo -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/boot2docker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/boot2docker.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/centos.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/centos.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/centos_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/centos_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/configure_swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/configure_swarm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/debian.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/debian.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/engine_config_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/engine_config_context.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/errors.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/fedora.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/fedora.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/fedora_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/fedora_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/generic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/os_release.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/os_release.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/os_release_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/os_release_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/pkgaction/action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/pkgaction/action.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/pkgaction/action_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/pkgaction/action_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/provisioner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/provisioner.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/rancheros.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/rancheros.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/redhat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/redhat.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/redhat_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/redhat_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/ubuntu.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/ubuntu.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/utils.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/provision/utils_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/keys_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/ssh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/ssh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/ssh_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/ssh/ssh_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/state/state.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/state/state.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/state/state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/state/state_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/swarm/swarm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/swarm/swarm.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/docker/machine/libmachine/version/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/docker/machine/libmachine/version/version.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/google/go-querystring/query/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/google/go-querystring/query/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/google/go-querystring/query/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/google/go-querystring/query/encode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/.travis.yml -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/link.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/link.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/github.com/tent/http-link-go/link_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/github.com/tent/http-link-go/link_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/forward.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/forward.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/keyring.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/keyring.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/server_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/agent/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/benchmark_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/buffer_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/certs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/certs.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/certs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/certs_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/channel.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/cipher_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_auth_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/client_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/common.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/common.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/connection.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/example_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/handshake_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/kex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/kex.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/kex_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/kex_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/keys_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/keys_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mac.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mac.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mempipe_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mempipe_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/messages.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/messages.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/messages_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/messages_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/mux_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/mux_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/server.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/session.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/session_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/tcpip_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/terminal_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_bsd.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_linux.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/terminal/util_windows.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/agent_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/agent_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/cert_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/cert_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/forward_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/forward_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/session_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/tcpip_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/tcpip_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/test_unix_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/test_unix_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/test/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/test/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/doc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata/keys.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/testdata_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/transport.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/golang.org/x/crypto/ssh/transport_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/golang.org/x/crypto/ssh/transport_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/LICENSE.libyaml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/apic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/decode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/emitterc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/encode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/parserc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/readerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/resolve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/scannerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/sorter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/suite_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/writerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/yaml.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/yamlh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v1/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v1/yamlprivateh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/decode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/encode_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/suite_test.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Godeps/_workspace/src/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/README.md -------------------------------------------------------------------------------- /moby.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/moby.go -------------------------------------------------------------------------------- /moby.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nathanleclaire/machine-compose/HEAD/moby.yml --------------------------------------------------------------------------------