Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ac22f7e

Browse files
committed
Create gh-pages branch via GitHub
0 parents  commit ac22f7e

File tree

9 files changed

+637
-0
lines changed

9 files changed

+637
-0
lines changed

images/bg_hr.png

943 Bytes
Loading

images/blacktocat.png

1.39 KB
Loading

images/icon_download.png

1.13 KB
Loading

images/sprite_download.png

16.4 KB
Loading

index.html

+142
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
1+
<!DOCTYPE html>
2+
<html>
3+
4+
<head>
5+
<meta charset='utf-8' />
6+
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
7+
<meta name="description" content="Docker-php : A Docker client in PHP" />
8+
9+
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
10+
11+
<title>Docker-php</title>
12+
</head>
13+
14+
<body>
15+
16+
<!-- HEADER -->
17+
<div id="header_wrap" class="outer">
18+
<header class="inner">
19+
<a id="forkme_banner" href="https://github.com/stage1/docker-php">View on GitHub</a>
20+
21+
<h1 id="project_title">Docker-php</h1>
22+
<h2 id="project_tagline">A Docker client in PHP</h2>
23+
24+
<section id="downloads">
25+
<a class="zip_download_link" href="https://github.com/stage1/docker-php/zipball/master">Download this project as a .zip file</a>
26+
<a class="tar_download_link" href="https://github.com/stage1/docker-php/tarball/master">Download this project as a tar.gz file</a>
27+
</section>
28+
</header>
29+
</div>
30+
31+
<!-- MAIN CONTENT -->
32+
<div id="main_content_wrap" class="outer">
33+
<section id="main_content" class="inner">
34+
<h1>
35+
<a name="docker-php" class="anchor" href="#docker-php"><span class="octicon octicon-link"></span></a>Docker PHP</h1>
36+
37+
<p><strong>Docker PHP</strong> (for lack of a better name) is a <a href="http://docker.io/">Docker</a> client written in PHP. This library is still a work in progress. Not much is supported yet, but the goal is to reach 100% API support.</p>
38+
39+
<p>The test suite currently passes against the <a href="http://docs.docker.io/en/latest/api/docker_remote_api_v1.9/">Docker Remote API v1.9</a>.</p>
40+
41+
<h2>
42+
<a name="installation" class="anchor" href="#installation"><span class="octicon octicon-link"></span></a>Installation</h2>
43+
44+
<p>The recommended way to install Docker PHP is of course to use <a href="http://getcomposer.org/">Composer</a>:</p>
45+
46+
<div class="highlight highlight-json"><pre><span class="p">{</span>
47+
<span class="nt">"require"</span><span class="p">:</span> <span class="p">{</span>
48+
<span class="nt">"stage1/docker-php"</span><span class="p">:</span> <span class="s2">"@dev"</span>
49+
<span class="p">}</span>
50+
<span class="p">}</span>
51+
</pre></div>
52+
53+
<p><strong>Note</strong>: there is no stable version of Docker PHP yet.</p>
54+
55+
<h2>
56+
<a name="usage" class="anchor" href="#usage"><span class="octicon octicon-link"></span></a>Usage</h2>
57+
58+
<p>See <a href="doc/usage.md">the documentation</a>.</p>
59+
60+
<h2>
61+
<a name="unit-tests" class="anchor" href="#unit-tests"><span class="octicon octicon-link"></span></a>Unit Tests</h2>
62+
63+
<p>Setup the test suite using <a href="http://getcomposer.org/">Composer</a>:</p>
64+
65+
<pre><code>$ composer install --dev
66+
</code></pre>
67+
68+
<p>Run it using <a href="http://phpunit.de/">PHPUnit</a>:</p>
69+
70+
<pre><code>$ bin/phpunit
71+
</code></pre>
72+
73+
<h2>
74+
<a name="contributing" class="anchor" href="#contributing"><span class="octicon octicon-link"></span></a>Contributing</h2>
75+
76+
<p>Here are a few rules to follow in order to ease code reviews, and discussions before maintainers accept and merge your work.</p>
77+
78+
<ul>
79+
<li>You <strong>MUST</strong> follow the <a href="http://www.php-fig.org/psr/1/">PSR-1</a> and <a href="http://www.php-fig.org/psr/2/">PSR-2</a>.</li>
80+
<li>You <strong>MUST</strong> run the test suite.</li>
81+
<li>You <strong>MUST</strong> write (or update) unit tests.</li>
82+
<li>You <strong>SHOULD</strong> write documentation.</li>
83+
</ul><p>Please, write <a href="http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html">commit messages that make sense</a>, and <a href="http://git-scm.com/book/en/Git-Branching-Rebasing">rebase your branch</a> before submitting your Pull Request.</p>
84+
85+
<p>One may ask you to <a href="http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html">squash your commits</a> too. This is used to "clean" your Pull Request before merging it (we don't want commits such as <code>fix tests</code>, <code>fix 2</code>, <code>fix 3</code>, etc.).</p>
86+
87+
<p>Also, when creating your Pull Request on GitHub, you <strong>MUST</strong> write a description which gives the context and/or explains why you are creating it.</p>
88+
89+
<p>Thank you!</p>
90+
91+
<h2>
92+
<a name="credits" class="anchor" href="#credits"><span class="octicon octicon-link"></span></a>Credits</h2>
93+
94+
<p>This README heavily inspired by <a href="https://github.com/willdurand/Negotiation">willdurand/Negotiation</a> by <a href="https://github.com/willdurand" class="user-mention">@willdurand</a>. This guy is pretty awesome.</p>
95+
96+
<h2>
97+
<a name="projects" class="anchor" href="#projects"><span class="octicon octicon-link"></span></a>Projects</h2>
98+
99+
<p>Projects known to be using docker-php:</p>
100+
101+
<ul>
102+
<li>
103+
<a href="https://github.com/jolicode/JoliCi">JoliCi</a>, Run your tests on different and isolated stacks</li>
104+
</ul><h2>
105+
<a name="license" class="anchor" href="#license"><span class="octicon octicon-link"></span></a>License</h2>
106+
107+
<p>The MIT License (MIT)</p>
108+
109+
<p>Copyright (c) 2013 Geoffrey Bachelet <a href="mailto:[email protected]">[email protected]</a></p>
110+
111+
<p>Permission is hereby granted, free of charge, to any person obtaining a copy
112+
of this software and associated documentation files (the "Software"), to deal
113+
in the Software without restriction, including without limitation the rights
114+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
115+
copies of the Software, and to permit persons to whom the Software is
116+
furnished to do so, subject to the following conditions:</p>
117+
118+
<p>The above copyright notice and this permission notice shall be included in
119+
all copies or substantial portions of the Software.</p>
120+
121+
<p>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
122+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
123+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
124+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
125+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
126+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
127+
THE SOFTWARE.</p>
128+
</section>
129+
</div>
130+
131+
<!-- FOOTER -->
132+
<div id="footer_wrap" class="outer">
133+
<footer class="inner">
134+
<p class="copyright">Docker-php maintained by <a href="https://github.com/stage1">stage1</a></p>
135+
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
136+
</footer>
137+
</div>
138+
139+
140+
141+
</body>
142+
</html>

javascripts/main.js

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
console.log('This would be the main JS file.');

params.json

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"name":"Docker-php","tagline":"A Docker client in PHP","body":"Docker PHP\r\n==========\r\n\r\n**Docker PHP** (for lack of a better name) is a [Docker](http://docker.io/) client written in PHP. This library is still a work in progress. Not much is supported yet, but the goal is to reach 100% API support.\r\n\r\nThe test suite currently passes against the [Docker Remote API v1.9](http://docs.docker.io/en/latest/api/docker_remote_api_v1.9/).\r\n\r\nInstallation\r\n------------\r\n\r\nThe recommended way to install Docker PHP is of course to use [Composer](http://getcomposer.org/):\r\n\r\n```json\r\n{\r\n \"require\": {\r\n \"stage1/docker-php\": \"@dev\"\r\n }\r\n}\r\n```\r\n\r\n**Note**: there is no stable version of Docker PHP yet.\r\n\r\nUsage\r\n-----\r\n\r\nSee [the documentation](doc/usage.md).\r\n\r\nUnit Tests\r\n----------\r\n\r\nSetup the test suite using [Composer](http://getcomposer.org/):\r\n\r\n```\r\n$ composer install --dev\r\n```\r\n\r\nRun it using [PHPUnit](http://phpunit.de/):\r\n\r\n```\r\n$ bin/phpunit\r\n```\r\n\r\nContributing\r\n------------\r\n\r\nHere are a few rules to follow in order to ease code reviews, and discussions before maintainers accept and merge your work.\r\n\r\n* You **MUST** follow the [PSR-1](http://www.php-fig.org/psr/1/) and [PSR-2](http://www.php-fig.org/psr/2/).\r\n* You **MUST** run the test suite.\r\n* You **MUST** write (or update) unit tests.\r\n* You **SHOULD** write documentation.\r\n\r\nPlease, write [commit messages that make sense](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html), and [rebase your branch](http://git-scm.com/book/en/Git-Branching-Rebasing) before submitting your Pull Request.\r\n\r\nOne may ask you to [squash your commits](http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html) too. This is used to \"clean\" your Pull Request before merging it (we don't want commits such as `fix tests`, `fix 2`, `fix 3`, etc.).\r\n\r\nAlso, when creating your Pull Request on GitHub, you **MUST** write a description which gives the context and/or explains why you are creating it.\r\n\r\nThank you!\r\n\r\nCredits\r\n-------\r\n\r\nThis README heavily inspired by [willdurand/Negotiation](https://github.com/willdurand/Negotiation) by @willdurand. This guy is pretty awesome.\r\n\r\nProjects\r\n--------\r\n\r\nProjects known to be using docker-php:\r\n\r\n* [JoliCi](https://github.com/jolicode/JoliCi), Run your tests on different and isolated stacks\r\n\r\nLicense\r\n-------\r\n\r\nThe MIT License (MIT)\r\n\r\nCopyright (c) 2013 Geoffrey Bachelet <[email protected]>\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n","google":"","note":"Don't delete this file! It's used internally to help with page regeneration."}

stylesheets/pygment_trac.css

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
.highlight .hll { background-color: #ffffcc }
2+
.highlight { background: #f0f3f3; }
3+
.highlight .c { color: #0099FF; font-style: italic } /* Comment */
4+
.highlight .err { color: #AA0000; background-color: #FFAAAA } /* Error */
5+
.highlight .k { color: #006699; font-weight: bold } /* Keyword */
6+
.highlight .o { color: #555555 } /* Operator */
7+
.highlight .cm { color: #0099FF; font-style: italic } /* Comment.Multiline */
8+
.highlight .cp { color: #009999 } /* Comment.Preproc */
9+
.highlight .c1 { color: #0099FF; font-style: italic } /* Comment.Single */
10+
.highlight .cs { color: #0099FF; font-weight: bold; font-style: italic } /* Comment.Special */
11+
.highlight .gd { background-color: #FFCCCC; border: 1px solid #CC0000 } /* Generic.Deleted */
12+
.highlight .ge { font-style: italic } /* Generic.Emph */
13+
.highlight .gr { color: #FF0000 } /* Generic.Error */
14+
.highlight .gh { color: #003300; font-weight: bold } /* Generic.Heading */
15+
.highlight .gi { background-color: #CCFFCC; border: 1px solid #00CC00 } /* Generic.Inserted */
16+
.highlight .go { color: #AAAAAA } /* Generic.Output */
17+
.highlight .gp { color: #000099; font-weight: bold } /* Generic.Prompt */
18+
.highlight .gs { font-weight: bold } /* Generic.Strong */
19+
.highlight .gu { color: #003300; font-weight: bold } /* Generic.Subheading */
20+
.highlight .gt { color: #99CC66 } /* Generic.Traceback */
21+
.highlight .kc { color: #006699; font-weight: bold } /* Keyword.Constant */
22+
.highlight .kd { color: #006699; font-weight: bold } /* Keyword.Declaration */
23+
.highlight .kn { color: #006699; font-weight: bold } /* Keyword.Namespace */
24+
.highlight .kp { color: #006699 } /* Keyword.Pseudo */
25+
.highlight .kr { color: #006699; font-weight: bold } /* Keyword.Reserved */
26+
.highlight .kt { color: #007788; font-weight: bold } /* Keyword.Type */
27+
.highlight .m { color: #FF6600 } /* Literal.Number */
28+
.highlight .s { color: #CC3300 } /* Literal.String */
29+
.highlight .na { color: #330099 } /* Name.Attribute */
30+
.highlight .nb { color: #336666 } /* Name.Builtin */
31+
.highlight .nc { color: #00AA88; font-weight: bold } /* Name.Class */
32+
.highlight .no { color: #336600 } /* Name.Constant */
33+
.highlight .nd { color: #9999FF } /* Name.Decorator */
34+
.highlight .ni { color: #999999; font-weight: bold } /* Name.Entity */
35+
.highlight .ne { color: #CC0000; font-weight: bold } /* Name.Exception */
36+
.highlight .nf { color: #CC00FF } /* Name.Function */
37+
.highlight .nl { color: #9999FF } /* Name.Label */
38+
.highlight .nn { color: #00CCFF; font-weight: bold } /* Name.Namespace */
39+
.highlight .nt { color: #330099; font-weight: bold } /* Name.Tag */
40+
.highlight .nv { color: #003333 } /* Name.Variable */
41+
.highlight .ow { color: #000000; font-weight: bold } /* Operator.Word */
42+
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
43+
.highlight .mf { color: #FF6600 } /* Literal.Number.Float */
44+
.highlight .mh { color: #FF6600 } /* Literal.Number.Hex */
45+
.highlight .mi { color: #FF6600 } /* Literal.Number.Integer */
46+
.highlight .mo { color: #FF6600 } /* Literal.Number.Oct */
47+
.highlight .sb { color: #CC3300 } /* Literal.String.Backtick */
48+
.highlight .sc { color: #CC3300 } /* Literal.String.Char */
49+
.highlight .sd { color: #CC3300; font-style: italic } /* Literal.String.Doc */
50+
.highlight .s2 { color: #CC3300 } /* Literal.String.Double */
51+
.highlight .se { color: #CC3300; font-weight: bold } /* Literal.String.Escape */
52+
.highlight .sh { color: #CC3300 } /* Literal.String.Heredoc */
53+
.highlight .si { color: #AA0000 } /* Literal.String.Interpol */
54+
.highlight .sx { color: #CC3300 } /* Literal.String.Other */
55+
.highlight .sr { color: #33AAAA } /* Literal.String.Regex */
56+
.highlight .s1 { color: #CC3300 } /* Literal.String.Single */
57+
.highlight .ss { color: #FFCC33 } /* Literal.String.Symbol */
58+
.highlight .bp { color: #336666 } /* Name.Builtin.Pseudo */
59+
.highlight .vc { color: #003333 } /* Name.Variable.Class */
60+
.highlight .vg { color: #003333 } /* Name.Variable.Global */
61+
.highlight .vi { color: #003333 } /* Name.Variable.Instance */
62+
.highlight .il { color: #FF6600 } /* Literal.Number.Integer.Long */
63+
64+
.type-csharp .highlight .k { color: #0000FF }
65+
.type-csharp .highlight .kt { color: #0000FF }
66+
.type-csharp .highlight .nf { color: #000000; font-weight: normal }
67+
.type-csharp .highlight .nc { color: #2B91AF }
68+
.type-csharp .highlight .nn { color: #000000 }
69+
.type-csharp .highlight .s { color: #A31515 }
70+
.type-csharp .highlight .sc { color: #A31515 }

0 commit comments

Comments
 (0)