mirror of https://github.com/docker/compose.git
Remove all website-related stuff from docs
Signed-off-by: Aanand Prasad <aanand.prasad@gmail.com>
This commit is contained in:
parent
724be54f09
commit
8297f55f2c
|
@ -1 +0,0 @@
|
||||||
/_site
|
|
|
@ -1 +0,0 @@
|
||||||
www.fig.sh
|
|
|
@ -1,10 +0,0 @@
|
||||||
FROM ubuntu:13.10
|
|
||||||
RUN apt-get -qq update && apt-get install -y ruby1.8 bundler python
|
|
||||||
RUN locale-gen en_US.UTF-8
|
|
||||||
ADD Gemfile /code/
|
|
||||||
ADD Gemfile.lock /code/
|
|
||||||
WORKDIR /code
|
|
||||||
RUN bundle install
|
|
||||||
ADD . /code
|
|
||||||
EXPOSE 4000
|
|
||||||
CMD bundle exec jekyll build
|
|
|
@ -1,3 +0,0 @@
|
||||||
source 'https://rubygems.org'
|
|
||||||
|
|
||||||
gem 'github-pages'
|
|
|
@ -1,62 +0,0 @@
|
||||||
GEM
|
|
||||||
remote: https://rubygems.org/
|
|
||||||
specs:
|
|
||||||
RedCloth (4.2.9)
|
|
||||||
blankslate (2.1.2.4)
|
|
||||||
classifier (1.3.3)
|
|
||||||
fast-stemmer (>= 1.0.0)
|
|
||||||
colorator (0.1)
|
|
||||||
commander (4.1.5)
|
|
||||||
highline (~> 1.6.11)
|
|
||||||
fast-stemmer (1.0.2)
|
|
||||||
ffi (1.9.3)
|
|
||||||
github-pages (12)
|
|
||||||
RedCloth (= 4.2.9)
|
|
||||||
jekyll (= 1.4.2)
|
|
||||||
kramdown (= 1.2.0)
|
|
||||||
liquid (= 2.5.4)
|
|
||||||
maruku (= 0.7.0)
|
|
||||||
rdiscount (= 2.1.7)
|
|
||||||
redcarpet (= 2.3.0)
|
|
||||||
highline (1.6.20)
|
|
||||||
jekyll (1.4.2)
|
|
||||||
classifier (~> 1.3)
|
|
||||||
colorator (~> 0.1)
|
|
||||||
commander (~> 4.1.3)
|
|
||||||
liquid (~> 2.5.2)
|
|
||||||
listen (~> 1.3)
|
|
||||||
maruku (~> 0.7.0)
|
|
||||||
pygments.rb (~> 0.5.0)
|
|
||||||
redcarpet (~> 2.3.0)
|
|
||||||
safe_yaml (~> 0.9.7)
|
|
||||||
toml (~> 0.1.0)
|
|
||||||
kramdown (1.2.0)
|
|
||||||
liquid (2.5.4)
|
|
||||||
listen (1.3.1)
|
|
||||||
rb-fsevent (>= 0.9.3)
|
|
||||||
rb-inotify (>= 0.9)
|
|
||||||
rb-kqueue (>= 0.2)
|
|
||||||
maruku (0.7.0)
|
|
||||||
parslet (1.5.0)
|
|
||||||
blankslate (~> 2.0)
|
|
||||||
posix-spawn (0.3.8)
|
|
||||||
pygments.rb (0.5.4)
|
|
||||||
posix-spawn (~> 0.3.6)
|
|
||||||
yajl-ruby (~> 1.1.0)
|
|
||||||
rb-fsevent (0.9.4)
|
|
||||||
rb-inotify (0.9.3)
|
|
||||||
ffi (>= 0.5.0)
|
|
||||||
rb-kqueue (0.2.0)
|
|
||||||
ffi (>= 0.5.0)
|
|
||||||
rdiscount (2.1.7)
|
|
||||||
redcarpet (2.3.0)
|
|
||||||
safe_yaml (0.9.7)
|
|
||||||
toml (0.1.0)
|
|
||||||
parslet (~> 1.5.0)
|
|
||||||
yajl-ruby (1.1.0)
|
|
||||||
|
|
||||||
PLATFORMS
|
|
||||||
ruby
|
|
||||||
|
|
||||||
DEPENDENCIES
|
|
||||||
github-pages
|
|
|
@ -1,3 +0,0 @@
|
||||||
markdown: redcarpet
|
|
||||||
encoding: utf-8
|
|
||||||
|
|
|
@ -1,73 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en-gb">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<title>{{ page.title }}</title>
|
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
||||||
<link href='http://fonts.googleapis.com/css?family=Lilita+One|Lato:300,400,700' rel='stylesheet' type='text/css'>
|
|
||||||
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
|
|
||||||
<link rel="stylesheet" type="text/css" href="css/fig.css?{{ site.time | date:'%Y%m%d%U%H%N%S' }}">
|
|
||||||
<link rel="canonical" href="http://www.fig.sh{% if page.url =="/index.html" %}/{% else %}{{ page.url }}{% endif %}">
|
|
||||||
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
|
|
||||||
<link rel="icon" href="img/favicon.ico" type="image/x-icon">
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="container">
|
|
||||||
<div class="logo mobile-logo">
|
|
||||||
<a href="index.html">
|
|
||||||
<img src="img/logo.png">
|
|
||||||
Fig
|
|
||||||
</a>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="content">{{ content }}</div>
|
|
||||||
|
|
||||||
<div class="sidebar">
|
|
||||||
<h1 class="logo">
|
|
||||||
<a href="index.html">
|
|
||||||
<img src="img/logo.png">
|
|
||||||
Fig
|
|
||||||
</a>
|
|
||||||
</h1>
|
|
||||||
|
|
||||||
<ul class="nav">
|
|
||||||
<li><a href="index.html">Home</a></li>
|
|
||||||
<li><a href="install.html">Install</a></li>
|
|
||||||
<li><a href="rails.html">Get started with Rails</a></li>
|
|
||||||
<li><a href="django.html">Get started with Django</a></li>
|
|
||||||
<li><a href="wordpress.html">Get started with Wordpress</a></li>
|
|
||||||
</ul>
|
|
||||||
<ul class="nav">
|
|
||||||
<li>Reference:</li>
|
|
||||||
<ul>
|
|
||||||
<li><a href="yml.html">fig.yml</a></li>
|
|
||||||
<li><a href="cli.html">Commands</a></li>
|
|
||||||
<li><a href="env.html">Environment variables</a></li>
|
|
||||||
</ul>
|
|
||||||
</ul>
|
|
||||||
<ul class="nav">
|
|
||||||
<li><a href="https://github.com/docker/fig">Fig on GitHub</a></li>
|
|
||||||
<li><a href="http://webchat.freenode.net/?channels=%23docker-fig&uio=d4">#docker-fig on Freenode</a></li>
|
|
||||||
</ul>
|
|
||||||
|
|
||||||
<p>Fig is a project from <a href="https://www.docker.com">Docker</a>.</p>
|
|
||||||
|
|
||||||
<div class="badges">
|
|
||||||
<iframe src="http://ghbtns.com/github-btn.html?user=docker&repo=fig&type=watch&count=true" allowtransparency="true" frameborder="0" scrolling="0" width="100" height="20"></iframe>
|
|
||||||
<a href="https://twitter.com/share" class="twitter-share-button" data-url="http://www.fig.sh/">Tweet</a>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?'http':'https';if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+'://platform.twitter.com/widgets.js';fjs.parentNode.insertBefore(js,fjs);}}(document, 'script', 'twitter-wjs');</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-43996733-3', 'auto');
|
|
||||||
ga('send', 'pageview');
|
|
||||||
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
File diff suppressed because one or more lines are too long
187
docs/css/fig.css
187
docs/css/fig.css
|
@ -1,187 +0,0 @@
|
||||||
body {
|
|
||||||
padding-top: 20px;
|
|
||||||
padding-bottom: 60px;
|
|
||||||
font-family: 'Lato', sans-serif;
|
|
||||||
font-weight: 300;
|
|
||||||
font-size: 18px;
|
|
||||||
color: #362;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
|
||||||
font-family: 'Lato', sans-serif;
|
|
||||||
font-weight: 400;
|
|
||||||
color: #25594D;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2, h3, h4, h5, h6 {
|
|
||||||
margin-top: 1.5em;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin: 20px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
a, a:hover, a:visited {
|
|
||||||
color: #4D9900;
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre, code {
|
|
||||||
border: none;
|
|
||||||
background: #D5E1B4;
|
|
||||||
}
|
|
||||||
|
|
||||||
code, pre code {
|
|
||||||
color: #484F40;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
|
||||||
border-bottom: 2px solid #bec9a1;
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
font-size: 0.84em;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre code {
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
max-width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.container {
|
|
||||||
margin-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
font-family: 'Lilita One', sans-serif;
|
|
||||||
font-size: 64px;
|
|
||||||
margin: 20px 0 40px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo a {
|
|
||||||
color: #a41211;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo img {
|
|
||||||
width: 60px;
|
|
||||||
vertical-align: -8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.mobile-logo {
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar {
|
|
||||||
font-size: 15px;
|
|
||||||
color: #777;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar a {
|
|
||||||
color: #a41211;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar p {
|
|
||||||
margin: 10px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 767px) {
|
|
||||||
.sidebar {
|
|
||||||
text-align: center;
|
|
||||||
margin-top: 40px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar .logo {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
|
||||||
.mobile-logo {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.logo {
|
|
||||||
margin-top: 30px;
|
|
||||||
margin-bottom: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content h1 {
|
|
||||||
margin: 60px 0 55px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.sidebar {
|
|
||||||
position: fixed;
|
|
||||||
top: 0;
|
|
||||||
left: 0;
|
|
||||||
bottom: 0;
|
|
||||||
width: 280px;
|
|
||||||
overflow-y: auto;
|
|
||||||
padding-left: 40px;
|
|
||||||
padding-right: 10px;
|
|
||||||
border-right: 1px solid #ccc;
|
|
||||||
}
|
|
||||||
|
|
||||||
.content {
|
|
||||||
margin-left: 320px;
|
|
||||||
max-width: 650px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav {
|
|
||||||
margin: 15px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav li a {
|
|
||||||
display: block;
|
|
||||||
padding: 5px 0;
|
|
||||||
line-height: 1.2;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav li a:hover, .nav li a:focus {
|
|
||||||
text-decoration: underline;
|
|
||||||
background: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.nav ul {
|
|
||||||
padding-left: 20px;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.badges {
|
|
||||||
margin: 40px 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.btn {
|
|
||||||
background: #25594D;
|
|
||||||
color: white;
|
|
||||||
text-transform: uppercase;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
a.btn:hover {
|
|
||||||
color: white;
|
|
||||||
}
|
|
||||||
|
|
||||||
.strapline {
|
|
||||||
font-size: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 768px) {
|
|
||||||
.strapline {
|
|
||||||
font-size: 40px;
|
|
||||||
display: block;
|
|
||||||
line-height: 1.2;
|
|
||||||
margin-top: 25px;
|
|
||||||
margin-bottom: 35px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
strong {
|
|
||||||
font-weight: 700;
|
|
||||||
}
|
|
|
@ -1,8 +0,0 @@
|
||||||
jekyll:
|
|
||||||
build: .
|
|
||||||
ports:
|
|
||||||
- "4000:4000"
|
|
||||||
volumes:
|
|
||||||
- .:/code
|
|
||||||
environment:
|
|
||||||
- LANG=en_US.UTF-8
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 130 KiB |
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
set -ex
|
|
||||||
pushd docs
|
|
||||||
docker-compose run --rm jekyll jekyll build
|
|
||||||
popd
|
|
|
@ -1,2 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
open file://`pwd`/docs/_site/index.html
|
|
Loading…
Reference in New Issue