-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.html
137 lines (124 loc) · 5.26 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Shipyard Project</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="Evan Hazlett">
<!-- HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- styles -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/fonts.css" rel="stylesheet">
<link href="css/app.css" rel="stylesheet">
<link href="css/flat-ui-fonts.css" rel="stylesheet">
<!-- fav and touch icons -->
<link rel="shortcut icon" href="img/favicon.ico">
<!-- scripts -->
<script type="text/javascript" src="js/jquery.min.js"></script>
</head>
<body>
<!-- comment github badge -->
<a href="https://github.com/shipyard/shipyard" target="_gh"><img style="position: fixed; top: 0; right: 0; border: 0; z-index: 10000;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_gray_6d6d6d.png" alt="Fork me on GitHub"></a>
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle Navigation</span>
</button>
<a class="navbar-brand" href="/">Shipyard</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="https://github.com/shipyard/shipyard/wiki/QuickStart">Quick Start</a></li>
<li><a href="https://github.com/shipyard/shipyard/wiki/API">API Documentation</a></li>
</ul>
</div>
<ul class="nav navbar-nav navbar-right">
</ul>
</div>
</nav>
<div class="jumbotron">
<div class="container">
<div class="col-md-5 col-md-offset-3">
<p class="title">Shipyard</p>
<p class="lead">Open Source <a href="http://docker.io" target="_blank">Docker</a> Management</p>
</div>
<div class="col-md-2">
<img src="./img/logo_128.png"/>
</div>
</div>
</div>
<div class="container">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Management from a Single View</h2>
<p class="lead">Shipyard gives you the ability to manage
Docker resources including containers, images, hosts, and more
all from a single management interface.</p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive" src="/img/shipyard_management.png"/>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Multi-Host Support</h2>
<p class="lead">Shipyard can manage multiple Docker hosts
giving the flexibility to build redundant, highly available applications.</p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive" src="/img/shipyard_hosts.png"/>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">Container Recovery</h2>
<p class="lead">Mark containers as "protected"
causing Shipyard to monitor them. If a protected container is stopped,
destroyed, etc. Shipyard will launch a new instance based on the
previous container's parameters.</p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive" src="/img/shipyard_recovery.png"/>
</div>
</div>
<hr class="featurette-divider">
<div class="row featurette">
<div class="col-md-7">
<h2 class="featurette-heading">RESTful API</h2>
<p class="lead">Shipyard provides a RESTful API for powerful
automation and integration.</p>
</div>
<div class="col-md-5">
<img class="featurette-image img-responsive" src="/img/shipyard_api.png"/>
</div>
</div>
</div>
<hr/>
<div id="copyright" class="center">© 2013 <a href="https://github.com/shipyard/shipyard" target="_gh">Shipyard</a> a project of <a href="http://arcus.io" target="_blank">Arcus</a></div>
<!-- scripts -->
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/holder.js"></script>
<script type="text/javascript">
$(function(){
$("[rel=tooltip]").tooltip();
$("[rel=popover]").popover();
});
</script>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-44201548-1', 'shipyard-project.com');
ga('send', 'pageview');
</script>
</body>
</html>