Re: [jclouds-site] add docker guide (#110)

2014-07-15 Thread Andrea Turli
@nacx could you merge it now? --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-site/pull/110#issuecomment-49020978

Re: [jclouds-site] add docker guide (#110)

2014-07-15 Thread Andrea Turli
Thanks @nacx, not sure why I don't get notification from this repo :+1: --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-site/pull/110#issuecomment-49040391

Re: [jclouds-site] add docker guide (#110)

2014-07-11 Thread CloudBees pull request builder plugin
[jclouds-site-pull-requests #352](https://jclouds.ci.cloudbees.com/job/jclouds-site-pull-requests/352/) SUCCESS This pull request looks good --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-site/pull/110#issuecomment-48735360

Re: [jclouds-site] add docker guide (#110)

2014-07-11 Thread jclouds-commentator
Go to http://144e2db6c41f42cacf0e-8d32f42a5f9a07e8ef68d3dc9465df51.r97.cf5.rackcdn.com/ to review your changes. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-site/pull/110#issuecomment-48735591

[jclouds-site] add docker guide (#110)

2014-07-08 Thread Andrea Turli
You can merge this Pull Request by running: git pull https://github.com/andreaturli/jclouds-site feature/docker Or you can view, comment on it, or merge it online at: https://github.com/jclouds/jclouds-site/pull/110 -- Commit Summary -- * add docker guide -- File Changes -- M

Re: [jclouds-site] add docker guide (#110)

2014-07-08 Thread CloudBees pull request builder plugin
[jclouds-site-pull-requests #351](https://jclouds.ci.cloudbees.com/job/jclouds-site-pull-requests/351/) SUCCESS This pull request looks good --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-site/pull/110#issuecomment-48280249

Re: [jclouds-site] add docker guide (#110)

2014-07-08 Thread jclouds-commentator
Go to http://5350652a3b3a0f832b33-2bb942a57461dcb381b0c2aeb0a12b23.r79.cf5.rackcdn.com/ to review your changes. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-site/pull/110#issuecomment-48280414

Re: [jclouds-site] add docker guide (#110)

2014-07-08 Thread Ignasi Barrera
+permalink: /guides/docker/ +--- + +jclouds-docker is a local cloud provider modelled on [docker](http://www.docker.io). Similar to other jclouds supported +providers, it supports the same portable abstractions offered by jclouds. + +![jclouds docker architecture](/img/jclouds-docker.png)

Re: [jclouds-site] add docker guide (#110)

2014-07-08 Thread Ignasi Barrera
@@ -0,0 +1,43 @@ +--- +layout: page +title: Docker: Getting Started Guide +permalink: /guides/docker/ +--- + +jclouds-docker is a local cloud provider modelled on [docker](http://www.docker.io). Similar to other jclouds supported +providers, it supports the same portable abstractions

Re: [jclouds-site] add docker guide (#110)

2014-07-08 Thread Ignasi Barrera
+* Ensure you are using a recent JDK 6 +* Setup your project to include `docker` + * Get the dependency `org.jclouds.labs/docker` using jclouds [Installation](/start/install). +* Start coding + +{% highlight java %} +// get a context with docker that offers the portable ComputeService

Re: [jclouds-site] add docker guide (#110)

2014-07-08 Thread Ignasi Barrera
+ .modules(ImmutableSet.Module of(new Log4JLoggingModule(), +new SshjSshClientModule())) + .buildView(ComputeServiceContext.class); +ComputeService client = context.getComputeService(); +