critical css

This commit is contained in:
Julien Bisconti 2018-03-18 12:59:03 +01:00
parent a8100184a9
commit 606cb04513
11 changed files with 1209 additions and 34 deletions

View File

@ -10,7 +10,7 @@ If this list is not complete, you can [contribute][editREADME] to make it so. He
***You can see the updates from [TWITTER](https://twitter.com/awesome_docker)***
> **Please**, help organize these resources so that they are _easy to find_ and _understand_ for new comers. See how to **[Contribute](https://github.com/veggiemonk/awesome-docker/blob/master/CONTRIBUTING.md)** for tips!
> **Please**, help organize these resources so that they are _easy to find_ and _understand_ for new comers. See how to **[Contribute](https://github.com/veggiemonk/awesome-docker/blob/master/.github/CONTRIBUTING.md)** for tips!
#### *If you see a link here that is not (any longer) a good fit, you can fix it by submitting a [pull request][editREADME] to improve this file. Thank you!*

View File

@ -27,20 +27,20 @@ const converter = new showdown.Converter({
// converter.setFlavor('github');
console.log('Loading files...');
const index = fs.readFileSync('index.tmpl', 'utf8');
const index = fs.readFileSync('website/index.tmpl', 'utf8');
const readme = fs.readFileSync('README.md', 'utf8');
console.log('Merging files...');
const $ = cheerio.load(index);
$('#md').append(converter.makeHtml(readme));
console.log('Writing main.html');
fs.writeFileSync('main.html', $.html(), 'utf8');
console.log('Writing index.html');
fs.writeFileSync('website/index.html', $.html(), 'utf8');
console.log('Bundling with Parcel.js');
console.log('');
new Parcel('main.html', {
new Parcel('website/index.html', {
name: 'build',
// publicURL: '/awesome-docker'
publicURL: '/'

30
critical-css.js Normal file
View File

@ -0,0 +1,30 @@
const path = require('path');
const fs = require('fs');
const tmpDir = require('os').tmpdir();
const request = require('request');
const criticalcss = require('criticalcss');
const cssUrl =
'https://awesome-docker.netlify.com/16dc205b0ca3044a54bfb5fc8384de31.css';
const cssPath = path.join(tmpDir, 'style.css');
request(cssUrl)
.pipe(fs.createWriteStream(cssPath))
.on('close', () => {
criticalcss.getRules(cssPath, (err, output) => {
if (err) {
throw new Error(err);
} else {
criticalcss.findCritical(
'https://awesome-docker.netlify.com/',
{ rules: JSON.parse(output) },
(err, output) => {
if (err) {
throw new Error(err);
} else {
console.log(output);
}
}
);
}
});
});

View File

@ -6,6 +6,8 @@
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta HTTP-EQUIV="REFRESH" content="0; url=https://awesome-docker.netlify.com">
<title>Awesome-docker</title>
<!-- <link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="critical.css"> -->
</head>
<body>
<p> <a href="https://awesome-docker.netlify.com/">We moved to a new place, click here to be redirected.</a></p>

View File

@ -1,28 +0,0 @@
<!DOCTYPE html><html class="no-js" lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Cache-control" content="public">
<meta charset="UTF-8">
<title>Awesome-docker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<meta name="description" content="A curated list of Docker resources and projects.">
<meta name="keywords" content="awesome awesome-list container docker dockerfile tools open source projects">
<link rel="icon" type="image/png" href="favicon.png">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<section class="page-header">
<h1 class="project-name">Awesome-docker</h1>
<h2 class="project-tagline">A curated list of Docker resources and projects</h2>
<a href="https://github.com/veggiemonk/awesome-docker" class="btn">View on GitHub</a>
<br>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/veggiemonk/awesome-docker" data-icon="octicon-star" data-size="large" data-count-href="/veggiemonk/awesome-docker/stargazers" data-show-count="true" data-count-aria-label="# stargazers on GitHub" aria-label="Star veggiemonk/awesome-docker on GitHub">Star</a>
</section>
<section id="md" class="main-content"></section>
<script src="index.js"></script>
<!--Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body></html>

View File

@ -4,7 +4,7 @@
"description": "> A curated list of Docker resources and projects Inspired by [@sindresorhus](https://github.com/sindresorhus)' [awesome][sindresorhus] and improved by these **[amazing contributors](https://github.com/veggiemonk/awesome-docker/graphs/contributors)**.",
"main": "index.js",
"scripts": {
"build": "node build.js",
"build": "rimraf ./dist/ && node build.js",
"convert": "showdown makehtml -i README.md -o README.html --omitExtraWLInCodeBlocks --simplifiedAutoLink --excludeTrailingPunctuationFromURLs --literalMidWordUnderscores --strikethrough --tables --tablesHeaderId --ghCodeBlocks --tasklists --disableForced4SpacesIndentedSublists --simpleLineBreaks --requireSpaceBeforeHeadingText --ghCompatibleHeaderId --ghMentions --backslashEscapesHTMLTags --emoji --splitAdjacentBlockquotes",
"package": "parcel build index.html --public-url /awesome-docker"
},
@ -20,8 +20,11 @@
"homepage": "https://github.com/veggiemonk/awesome-docker#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"criticalcss": "^2.1.0",
"inline-assets": "^1.2.4",
"parcel-bundler": "^1.6.2",
"request": "^2.85.0",
"rimraf": "^2.6.2",
"showdown": "^1.8.6"
},
"devDependencies": {

View File

Before

Width:  |  Height:  |  Size: 973 B

After

Width:  |  Height:  |  Size: 973 B

913
website/index.html Normal file
View File

@ -0,0 +1,913 @@
<!DOCTYPE html><html class="no-js" lang="en"><head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Cache-control" content="public">
<meta charset="UTF-8">
<title>Awesome-docker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<meta name="description" content="A curated list of Docker resources and projects.">
<meta name="keywords" content="awesome awesome-list container docker dockerfile tools open source projects">
<link rel="icon" type="image/png" href="favicon.png">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css">
<!-- <link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="critical.css"> -->
<style>
html {
font-family: sans-serif;
}
section {
display: block;
}
a {
background-color: transparent;
}
strong {
font-weight: 700;
}
h1 {
font-size: 2em;
margin: 0.67em 0px;
}
img {
border: 0px;
}
svg:not(:root) {
overflow: hidden;
}
* {
box-sizing: border-box;
}
body {
padding: 0px;
margin: 0px;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: rgb(96, 108, 113);
}
a {
color: rgb(30, 107, 184);
text-decoration: none;
}
.btn {
display: inline-block;
margin-bottom: 1rem;
color: rgba(255, 255, 255, 0.701961);
background-color: rgba(255, 255, 255, 0.0784314);
border: 1px solid rgba(255, 255, 255, 0.2);
border-top-left-radius: 0.3rem;
border-top-right-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
transition: color 0.2s, background-color 0.2s, border-color 0.2s;
-webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
@media screen and (min-width: 64em) {
.btn {
padding: 0.75rem 1rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.btn {
padding: 0.6rem 0.9rem;
font-size: 0.9rem;
}
}
@media screen and (max-width: 42em) {
.btn {
display: block;
width: 100%;
padding: 0.75rem;
font-size: 0.9rem;
}
}
.page-header {
color: rgb(255, 255, 255);
text-align: center;
background-color: rgb(21, 153, 87);
background-image: linear-gradient(120deg, rgb(21, 87, 153), rgb(21, 153, 87));
}
@media screen and (min-width: 64em) {
.page-header {
padding: 5rem 6rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.page-header {
padding: 3rem 4rem;
}
}
@media screen and (max-width: 42em) {
.page-header {
padding: 2rem 1rem;
}
}
.project-name {
margin-top: 0px;
margin-bottom: 0.1rem;
}
@media screen and (min-width: 64em) {
.project-name {
font-size: 3.25rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.project-name {
font-size: 2.25rem;
}
}
@media screen and (max-width: 42em) {
.project-name {
font-size: 1.75rem;
}
}
.project-tagline {
margin-bottom: 2rem;
font-weight: 400;
opacity: 0.7;
}
@media screen and (min-width: 64em) {
.project-tagline {
font-size: 1.25rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.project-tagline {
font-size: 1.15rem;
}
}
@media screen and (max-width: 42em) {
.project-tagline {
font-size: 1rem;
}
}
.main-content {
word-wrap: break-word;
}
.main-content :first-child {
margin-top: 0px;
}
@media screen and (min-width: 64em) {
.main-content {
max-width: 64rem;
padding: 2rem 6rem;
margin: 0px auto;
font-size: 1.1rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.main-content {
padding: 2rem 4rem;
font-size: 1.1rem;
}
}
@media screen and (max-width: 42em) {
.main-content {
padding: 2rem 1rem;
font-size: 1rem;
}
}
.main-content img {
max-width: 100%;
}
.main-content h1,
.main-content h4 {
margin-top: 2rem;
margin-bottom: 1rem;
font-weight: 400;
color: rgb(21, 153, 87);
}
.main-content p {
margin-bottom: 1em;
}
.main-content blockquote {
padding: 0px 1rem;
margin-left: 0px;
color: rgb(129, 145, 152);
border-left-width: 0.3rem;
border-left-style: solid;
border-left-color: rgb(220, 230, 240);
}
.main-content blockquote> :first-child {
margin-top: 0px;
}
.main-content blockquote> :last-child {
margin-bottom: 0px;
}
</style>
</head>
<body>
<section class="page-header">
<h1 class="project-name">Awesome-docker</h1>
<h2 class="project-tagline">A curated list of Docker resources and projects</h2>
<a href="https://github.com/veggiemonk/awesome-docker" class="btn">View on GitHub</a>
<br>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/veggiemonk/awesome-docker" data-icon="octicon-star" data-size="large" data-count-href="/veggiemonk/awesome-docker/stargazers" data-show-count="true" data-count-aria-label="# stargazers on GitHub" aria-label="Star veggiemonk/awesome-docker on GitHub">Star</a>
</section>
<section id="md" class="main-content"><h1 id="awesome-docker-awesomehttpscdnrawgitcomsindresorhusawesomed7305f38d29fed78fa85652e3a63e154dd8e8829mediabadgesvghttpsgithubcomsindresorhusawesome-join-the-chat-at-httpsgitterimveggiemonkawesome-dockerhttpsbadgesgitterimjoin20chatsvghttpsgitterimveggiemonkawesome-docker-say-thankshttpsimgshieldsiobadgesaythanksio-e298bc-1eaedbsvghttpssaythanksiotoveggiemonk">Awesome Docker <a href="https://github.com/sindresorhus/awesome"><img src="https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg" alt="Awesome"></a> <a href="https://gitter.im/veggiemonk/awesome-docker"><img src="https://badges.gitter.im/Join%20Chat.svg" alt="Join the chat at https://gitter.im/veggiemonk/awesome-docker"></a> <a href="https://saythanks.io/to/veggiemonk"><img src="https://img.shields.io/badge/SayThanks.io-%E2%98%BC-1EAEDB.svg" alt="Say Thanks"></a></h1>
<blockquote>
<p>A curated list of Docker resources and projects<br>
Inspired by <a href="https://github.com/sindresorhus">@sindresorhus</a>&apos; <a href="https://github.com/sindresorhus/awesome">awesome</a> and improved by these <strong><a href="https://github.com/veggiemonk/awesome-docker/graphs/contributors">amazing contributors</a></strong>.</p>
</blockquote>
<p>It&apos;s now a GitHub project because it&apos;s considerably easier for other people to edit, fix and expand on Docker using GitHub.<br>
Just click <a href="https://github.com/veggiemonk/awesome-docker/edit/master/README.md">README.md</a> to submit a <a href="https://github.com/veggiemonk/awesome-docker/edit/master/README.md">pull request</a>.<br>
If this list is not complete, you can <a href="https://github.com/veggiemonk/awesome-docker/edit/master/README.md">contribute</a> to make it so. Here is a great video tutorial to <a href="https://egghead.io/lessons/javascript-identifying-how-to-contribute-to-an-open-source-project-on-github">contribute on Github</a></p>
<p><strong><em>You can see the updates from <a href="https://twitter.com/awesome_docker">TWITTER</a></em></strong></p>
<blockquote>
<p><strong>Please</strong>, help organize these resources so that they are <em>easy to find</em> and <em>understand</em> for new comers. See how to <strong><a href="https://github.com/veggiemonk/awesome-docker/blob/master/CONTRIBUTING.md">Contribute</a></strong> for tips!</p>
</blockquote>
<h4 id="if-you-see-a-link-here-that-is-not-any-longer-a-good-fit-you-can-fix-it-by-submitting-a-pull-requesteditreadme-to-improve-this-file-thank-you"><em>If you see a link here that is not (any longer) a good fit, you can fix it by submitting a <a href="https://github.com/veggiemonk/awesome-docker/edit/master/README.md">pull request</a> to improve this file. Thank you!</em></h4>
<p>The creators and maintainers of this list do not receive and should not receive any form of payment to accept a change made by any contributor.<br>
The goal of this repo is to index open-source projects, not to advertise for profit.</p>
<p>All the links are monitored and tested with <a href="https://github.com/dkhamsing/awesome_bot">awesome_bot</a> made by <a href="https://github.com/dkhamsing">@dkhamsing</a></p>
<h1 id="contents">Contents</h1>
<ul>
<li>Introduction<ul>
<li><a href="#what-is-docker">What is Docker?</a></li>
<li><a href="#where-to-start">Where to start?</a></li>
<li><a href="#where-to-start-windows">Where to start? (Windows)</a></li></ul></li>
<li><a href="#projects">Projects</a><ul>
<li><a href="#container-operations">Container Operations</a></li>
<li><a href="#container-composition">Container Composition</a></li>
<li><a href="#deployment-and-infrastructure">Deployment and Infrastructure</a></li>
<li><a href="#monitoring">Monitoring</a></li>
<li><a href="#networking">Networking</a></li>
<li><a href="#orchestration">Orchestration</a></li>
<li><a href="#paas">PaaS</a></li>
<li><a href="#reverse-proxy">Reverse Proxy</a></li>
<li><a href="#security">Security</a></li>
<li><a href="#service-discovery">Service Discovery</a></li>
<li><a href="#volume-management--data">Volume Management / Data</a></li>
<li><a href="#user-interface">User Interface</a><ul>
<li><a href="#desktop">Desktop</a></li>
<li><a href="#terminal">Terminal</a></li>
<li><a href="#web">Web</a></li></ul></li>
<li><a href="#docker-images">Docker Images</a></li>
<li><a href="#base-tools">Base Tools</a></li>
<li><a href="#builder">Builder</a></li>
<li><a href="#dockerfile">Dockerfile</a></li>
<li><a href="#linter">Linter</a></li>
<li><a href="#registry">Registry</a></li>
<li><a href="#development-with-docker">Development with Docker</a></li>
<li><a href="#api-client">API Client</a></li>
<li><a href="#cicd">CI/CD</a></li>
<li><a href="#development-environment">Development Environment</a></li>
<li><a href="#garbage-collection">Garbage Collection</a></li>
<li><a href="#serverless">Serverless</a></li>
<li><a href="#testing">Testing</a></li>
<li><a href="#wrappers">Wrappers</a></li>
<li><a href="#services-based-on-docker-">Services based on Docker ($$$)</a></li>
<li><a href="#ci-services">CI/CD</a></li>
<li><a href="#caas">CaaS</a></li>
<li><a href="#monitoring-services">Monitoring</a></li></ul></li>
<li><a href="#useful-resources">Useful Resources</a><ul>
<li><a href="#awesome-lists">Awesome Lists</a></li>
<li><a href="#good-tips">Good Tips</a></li>
<li><a href="#raspberry-pi--arm">Raspberry Pi / ARM</a></li>
<li><a href="#security-1">Security</a></li>
<li><a href="#videos">Videos</a></li></ul></li>
<li><a href="#communities-and-meetups">Communities and Meetups</a><ul>
<li><a href="#brazilian">Brazilian</a></li>
<li><a href="#chinese">Chinese</a></li>
<li><a href="#english">English</a></li>
<li><a href="#russian">Russian</a></li></ul></li>
</ul>
<h1 id="legend">Legend</h1>
<ul>
<li>Abandoned &#x1F480;</li>
<li>Beta &#x1F6A7;</li>
<li>Monetized &#x1F4B2;</li>
</ul>
<h1 id="what-is-docker">What is Docker</h1>
<blockquote>
<p>Docker is an open platform for developers and sysadmins to build, ship, and run distributed applications. Consisting of Docker Engine, a portable, lightweight runtime and packaging tool, and Docker Hub, a cloud service for sharing applications and automating workflows, Docker enables apps to be quickly assembled from components and eliminates the friction between development, QA, and production environments. As a result, IT can ship faster and run the same app, unchanged, on laptops, data center VMs, and any cloud.</p>
</blockquote>
<p><em>Source:</em> <a href="https://www.docker.com/what-docker">What is Docker</a></p>
<h1 id="where-to-start">Where to start</h1>
<ul>
<li><a href="http://etherealmind.com/basics-docker-containers-hypervisors-coreos/">Basics &#x2013; Docker, Containers, Hypervisors, CoreOS</a></li>
<li><a href="https://www.youtube.com/watch?v=XeSD17YRijk&amp;list=PL-v3vdeWVEsXT-u0JDQZnM90feU3NE3v8">Dive Into Docker: From &quot;What is Docker?&quot; to &quot;Hello World&quot;</a> (60:25) by <a href="https://twitter.com/nickjanetakis">@nickjanetakis</a></li>
<li><a href="https://docker-curriculum.com">Docker Curriculum</a>: A comprehensive tutorial for getting started with Docker. Teaches how to use Docker and deploy dockerized apps on AWS with Elastic Beanstalk and Elastic Container Service.</li>
<li><a href="https://docs.docker.com/">Docker Documentation</a></li>
<li><a href="https://github.com/machzqcq/docker-for-all">Docker for all - Developers, Testers, DevOps, Product Owners + Videos</a> Docker Training Videos for all</li>
<li><a href="https://github.com/odewahn/docker-jumpstart/">Docker Jumpstart</a>: a quick introduction</li>
<li><a href="https://docs.docker.com/toolbox/overview/">Docker Toolbox</a> &#x1F480; - Quick setup and launch of a Docker environment on older Mac (10.10 and below) and Windows (8.1 and below) systems. On newer systems it&apos;s recommended to use the <a href="https://docs.docker.com/docker-for-mac/">Docker for Mac</a> or <a href="https://docs.docker.com/docker-for-windows/">Docker for Windows</a>.</li>
<li><a href="https://training.docker.com/">Docker Training</a> - Includes a free self-paced hands-on tutorial (free registration required or sign-in with DockerHub ID)</li>
<li><a href="https://www.katacoda.com/">Katacoda</a>: Learn Docker using Interactive Browser-Based Labs</li>
<li><a href="https://github.com/dwyl/learn-docker">Learn Docker</a> Full environment set up, screenshots, step-by-step tutorial and more resources (video, articles, cheat sheets) by <a href="https://github.com/dwyl">@dwyl</a></li>
<li><a href="https://training.play-with-docker.com/">Play With Docker</a> - PWD is a great way to get started with Docker from beginner to advanced users. Docker runs directly in your browser.</li>
<li><a href="http://play-with-moby.com/">Play With Moby</a> - PWM is a web based Moby playground which allows you to try different components of the platform in seconds. It gives you the experience of having a free Alpine Linux Virtual Machine in the cloud where you can build and run Moby projects and even create clusters to experiment.</li>
</ul>
<p><strong>Cheatsheets</strong> by</p>
<ul>
<li><a href="https://github.com/eon01/DockerCheatSheet">@eon01</a></li>
<li><a href="https://github.com/dimonomid/docker-quick-ref">@dimonomid</a> (PDF)</li>
<li><a href="http://docker.jens-piegsa.com">@JensPiegsa</a></li>
<li><a href="https://github.com/wsargent/docker-cheat-sheet">@wsargent</a></li>
</ul>
<h1 id="where-to-start-windows">Where to start (Windows)</h1>
<ul>
<li><a href="http://collabnix.com/a-comparative-study-of-docker-engine-on-windows-server-vs-linux-platform/">A Comparative Study of Docker Engine on Windows Server vs Linux Platform</a> Comparing the feature sets and implementations of Docker on Windows and Linux</li>
<li><a href="https://blog.docker.com/2016/09/build-your-first-docker-windows-server-container/">Build And Run Your First Docker Windows Server Container</a> Walkthrough installing Docker on Windows 10, building a Docker image and running a Windows container</li>
<li><a href="https://toedter.com/2015/05/11/docker-on-windows-behind-a-firewall/">Docker on Windows behind a firewall</a> by <a href="https://twitter.com/kaitoedter">@kaitoedter</a></li>
<li><a href="https://success.docker.com/article/modernizing-traditional-dot-net-applications">Docker Reference Architecture: Modernizing Traditional .NET Framework Applications</a> - You will learn to identify the types of .NET Framework applications that are good candidates for containerization, the &quot;lift-and-shift&quot; approach to containerization.</li>
<li><a href="https://blog.alexellis.io/docker-does-sql2016-aspnet/">Docker with Microsoft SQL 2016 + ASP.NET</a> Demonstration running ASP.NET and SQL Server workloads in Docker</li>
<li><a href="https://www.hanselman.com/blog/ExploringASPNETCoreWithDockerInBothLinuxAndWindowsContainers.aspx">Exploring ASP.NET Core with Docker in both Linux and Windows Containers</a> Running ASP.NET Core apps in Linux and Windows containers, using <a href="https://docs.docker.com/docker-for-windows/">Docker for Windows</a></li>
<li><a href="https://blog.sixeyed.com/dockerizing-nerd-dinner-part-1-running-a-legacy-asp-net-app-in-a-windows-container/">Running a Legacy ASP.NET App in a Windows Container</a> Steps for Dockerizing a legacy ASP.NET app and runnning as a Windows container</li>
<li><a href="https://www.youtube.com/watch?v=N7SG2wEyQtM">Windows Containers and Docker: The 101</a> &#x1F3A5; - A 20-minute overview, using Docker to run PowerShell, ASP.NET Core and ASP.NET apps</li>
<li><a href="https://docs.microsoft.com/en-us/virtualization/windowscontainers/about/index">Windows Containers Quick Start</a> Overview of Windows containers, drilling down to Quick Starts for Windows 10 and Windows Server 2016</li>
</ul>
<hr>
<h1 id="projects">Projects</h1>
<p>Moby = open source development</p>
<p>Docker CE = free product release based on Moby</p>
<p>Docker EE = commercial product release based on Docker CE.</p>
<p>Docker EE is on the same code base as Docker CE, so also built from Moby, with commercial components added, such as &quot;docker data center / universal control plane&quot;</p>
<ul>
<li><a href="https://github.com/moby/moby">Moby</a></li>
<li><a href="https://hub.docker.com">Docker Images</a></li>
<li><a href="https://github.com/docker/compose/">Docker Compose</a> (Define and run multi-container applications with Docker)</li>
<li><a href="https://github.com/docker/machine">Docker Machine</a> (Machine management for a container-centric world)</li>
<li><a href="https://github.com/docker/distribution">Docker Registry</a> (The Docker toolset to pack, ship, store, and deliver content)</li>
<li><a href="https://github.com/docker/swarm">Docker Swarm</a> (Swarm: a Docker-native clustering system)</li>
</ul>
<h2 id="container-operations">Container Operations</h2>
<h3 id="container-composition">Container Composition</h3>
<ul>
<li><a href="https://github.com/icy/bocker">bocker</a> (2) - Write Dockerfile completely in Bash. Extensible and simple. --&gt; Reusable by <a href="https://github.com/icy">@icy</a></li>
<li><a href="https://github.com/p8952/bocker">bocker</a> (1) &#x1F480; - Docker implemented in 100 lines of bash by <a href="https://github.com/p8952">p8952</a></li>
<li><a href="https://github.com/box-builder/box">box</a> - Build Dockerfile images with a mruby DSL, includes flattening and layer manipulation</li>
<li><a href="https://github.com/byrnedo/capitan">Capitan</a> - Composable docker orchestration with added scripting support by <a href="https://github.com/byrnedo">@byrnedo</a>.</li>
<li><a href="hhttps://github.com/funkwerk/compose_plantuml">compose_plantuml</a> - Generate Plantuml graphs from docker-compose files by <a href="https://github.com/funkwerk">@funkwerk</a></li>
<li><a href="https://github.com/magicmark/composerize">Composerize</a> - Convert docker run commands into docker-compose files</li>
<li><a href="https://github.com/polonskiy/crowdr">crowdr</a> - Tool for managing multiple Docker containers (<code>docker-compose</code> alternative) by <a href="https://github.com/polonskiy/">@polonskiy</a></li>
<li><a href="https://github.com/abesto/docker-compose-graphviz">docker-compose-graphviz</a> - Turn a docker-compose.yml files into Graphviz .dot files by <a href="https://github.com/abesto">@abesto</a></li>
<li><a href="https://github.com/francescou/docker-compose-search">docker-compose-search</a> - A search engine for Docker Compose application stacks by <a href="https://github.com/francescou/">@francescou</a></li>
<li><a href="https://github.com/Alexis-benoist/draw-compose">draw-compose</a> - Utility to draw a schema of a docker compose by <a href="https://github.com/Alexis-benoist">@Alexis-benoist</a></li>
<li><a href="https://github.com/cisco/elsy">elsy</a> - An opinionated, multi-language, build tool based on Docker and Docker Compose</li>
<li><a href="https://github.com/cloud66/habitus">habitus</a> - A Build Flow Tool for Docker by <a href="https://github.com/cloud66">@cloud66</a></li>
<li><a href="https://github.com/toscanini/maestro">Maestro</a> &#x1F480; - Maestro provides the ability to easily launch, orchestrate and manage mulitiple Docker containers as single unit by <a href="https://github.com/toscanini">@tascanini</a></li>
<li><a href="https://github.com/ashmckenzie/percheron">percheron</a> &#x1F480; - Organise your Docker containers with muscle and intelligence by <a href="https://github.com/ashmckenzie">@ashmckenzie</a></li>
<li><a href="https://github.com/grammarly/rocker-compose">rocker-compose</a> - Docker composition tool with idempotency features for deploying apps composed of multiple containers. By <a href="grammarly">@grammarly</a></li>
<li><a href="https://github.com/grammarly/rocker">rocker</a> - Extended Dockerfile builder. Supports multiple FROMs, MOUNTS, templates, etc. by <a href="grammarly">grammarly</a>.</li>
<li><a href="https://github.com/stacker/stacker-cli">Stacker</a> - Docker Compose Templates. Stacker provides an abstraction layer over Docker Compose and a better DX (developer experience).</li>
<li><a href="https://github.com/CenturyLinkLabs/zodiac">Zodiac</a> &#x1F480; - A lightweight tool for easy deployment and rollback of dockerized applications. By <a href="https://github.com/CenturyLinkLabs">@CenturyLinkLabs</a></li>
</ul>
<h3 id="deployment-and-infrastructure">Deployment and Infrastructure</h3>
<ul>
<li><a href="https://gitlab.com/blackfish/blackfish">blackfish</a> - a CoreOS VM to build swarm clusters for Dev &amp; Production by <a href="http://datamc.io/">@DataMC</a></li>
<li><a href="https://github.com/newrelic/centurion">Centurion</a> - Centurion is a mass deployment tool for Docker fleets. It takes containers from a Docker registry and runs them on a fleet of hosts with the correct environment variables, host volume mappings, and port mappings. By <a href="https://github.com/newrelic">@newrelic</a></li>
<li><a href="https://github.com/brooklyncentral/clocker">Clocker</a> - Clocker creates and manages a Docker cloud infrastructure. Clocker supports single-click deployments and runtime management of multi-node applications that run as containers distributed across multiple hosts, on both Docker and Marathon. It leverages <a href="https://github.com/projectcalico/calicoctl">Calico</a> and <a href="https://github.com/weaveworks/weave">Weave</a> for networking and <a href="http://brooklyn.apache.org/">Brooklyn</a> for application blueprints. By <a href="https://github.com/brooklyncentral">@brooklyncentral</a></li>
<li><a href="https://github.com/ehazlett/conduit">Conduit</a> - Experimental deployment system for Docker by <a href="https://github.com/ehazlett">@ehazlett</a></li>
<li><a href="https://github.com/gondor/depcon">depcon</a> - Depcon is written in Go and allows you to easily deploy Docker containers to Apache Mesos/Marathon, Amazon ECS and Kubernetes. By <a href="https://github.com/gondor">@gonodr</a></li>
<li><a href="https://github.com/ttiny/deploy">deploy</a> &#x1F480; - Git and Docker deployment tool. A middle ground between simple Docker composition tools and full blown cluster orchestration by <a href="https://github.com/ttiny">@ttiny</a></li>
<li><a href="https://github.com/humblec/dockit">dockit</a> &#x1F480; - Do docker actions and Deploy gluster containers! By <a href="https://github.com/humblec">@humblec</a></li>
<li><a href="https://github.com/Grafeas/Grafeas">Grafeas</a> - A common API for metadata about containers, from image and build details to security vulnerabilities. By <a href="https://github.com/Grafeas">Grafeas</a></li>
<li><a href="https://github.com/longshoreman/longshoreman">Longshoreman</a> &#x1F480; - Longshoreman automates application deployment using Docker. Just create a Docker repository (or use a service), configure the cluster using AWS or Digital Ocean (or whatever you like) and deploy applications using a Heroku-like CLI tool. By <a href="https://github.com/longshoreman">longshoreman</a></li>
</ul>
<h3 id="monitoring">Monitoring</h3>
<ul>
<li><a href="https://github.com/axibase/atsd-use-cases/tree/master/Solutions/docker">Axibase Collector</a> - Axibase Collector streams performance counters, configuration changes and lifecycle events from the Docker engine(s) into Axibase Time Series Database for roll-up dashboards and integration with upstream monitoring systems.</li>
<li><a href="https://github.com/google/cadvisor">cAdvisor</a> - Analyzes resource usage and performance characteristics of running containers. Created by <a href="https://github.com/google">@Google</a></li>
<li><a href="https://github.com/deltaskelta/docker-alertd">Docker-Alertd</a> - Monitor and send alerts based on docker container resource usage/statistics</li>
<li><a href="https://github.com/vfarcic/docker-flow-monitor">Docker-Flow-Monitor</a> - Reconfigures Prometheus when a new service is updated or deployed automatically by <a href="https://github.com/vfarcic">@vfarcic</a></li>
<li><a href="https://github.com/kiyoto/docker-fluentd">Docker-Fluentd</a> - Docker container to Log Other Containers&apos; Logs. One can aggregate the logs of Docker containers running on the same host using Fluentd by <a href="https://github.com/kiyoto">@kiyoto</a></li>
<li><a href="https://github.com/dockerana/dockerana">Dockerana</a> &#x1F480; - packaged version of Graphite and Grafana, specifically targeted at metrics from Docker.</li>
<li><a href="https://www.dynatrace.com/technologies/cloud-and-microservices/docker-monitoring/">Dynatrace</a> - Monitor containerized applications without installing agents or modifying your Run commands</li>
<li><a href="https://nicolargo.github.io/glances/">Glances</a> - A cross-platform curses-based system monitoring tool written in Python by <a href="https://github.com/nicolargo">@nicolargo</a></li>
<li><a href="https://grafana.com/dashboards/179">Grafana Docker Dashboard Template</a> - A template for your Docker, Grafana and Prometheus stack <a href="https://github.com/vegasbrianc">@vegasbrianc</a></li>
<li><a href="https://github.com/vegasbrianc/docker-monitoring">InfluxDB, cAdvisor, Grafana</a> - InfluxDB Time series DB in combination with Grafana and cAdvisor by <a href="https://github.com/vegasbrianc">@vegasbrianc</a></li>
<li><a href="https://github.com/gocardless/logjam">LogJam</a> - Logjam is a log forwarder designed to listen on a local port, receive log entries over UDP, and forward these messages on to a log collection server (such as logstash) by <a href="https://github.com/gocardless">@gocardless</a></li>
<li><a href="https://github.com/sematext/sematext-agent-docker">Logsene for Docker</a> Monitoring of Metrics, Events and Logs implemented in Node.js. Integrated <a href="https://github.com/sematext/logagent-js">logagent-js</a> to detect and parse various log formats. <a href="https://twitter.com/sematext">@sematext</a></li>
<li><a href="https://github.com/gliderlabs/logspout">Logspout</a> - Log routing for Docker container logs by <a href="https://github.com/gliderlabs">@gliderlabs</a></li>
<li><a href="https://github.com/uschtwill/docker_monitoring_logging_alerting">Out-of-the-box Host/Container Monitoring/Logging/Alerting Stack</a> - Docker host and container monitoring, logging and alerting out of the box using cAdvisor, Prometheus, Grafana for monitoring, Elasticsearch, Kibana and Logstash for logging and elastalert and Alertmanager for alerting. Set up in 5 Minutes. Secure mode for production use with built-in <a href="https://github.com/jwilder/nginx-proxy">Automated Nginx Reverse Proxy (jwilder&apos;s)</a>.</li>
<li><a href="https://github.com/monitoringartist/Zabbix-Docker-Monitoring">Zabbix Docker module</a> - Zabbix module that provides discovery of running containers, CPU/memory/blk IO/net container metrics. Systemd Docker and LXC execution driver is also supported. It&apos;s a dynamically linked shared object library, so its performance is (~10x) better, than any script solution.</li>
<li><a href="https://github.com/gomex/docker-zabbix">Zabbix Docker</a> - Monitor containers automatically using zabbix LLD feature.</li>
</ul>
<h3 id="networking">Networking</h3>
<ul>
<li><a href="https://www.projectcalico.org/getting-started/docker/">Calico-Docker</a> - Calico is a pure layer 3 virtual network that allows containers over multiple docker-hosts to talk to each other.</li>
<li><a href="https://github.com/coreos/flannel/">Flannel</a> - Flannel is a virtual network that gives a subnet to each host for use with container runtimes. By <a href="https://github.com/coreos">@coreos</a></li>
<li><a href="https://github.com/nicolaka/netshoot">netshoot</a> - The netshoot container has a powerful set of networking tools to help troubleshoot Docker networking issues by <a href="https://github.com/nicolaka">@nicolaka</a></li>
<li><a href="https://github.com/weaveworks/weave">Weave</a> (The Docker network) - Weave creates a virtual network that connects Docker containers deployed across multiple hosts.</li>
</ul>
<h3 id="orchestration">Orchestration</h3>
<ul>
<li><a href="https://github.com/athena-oss/athena">athena</a> - An automation platform with a plugin architecture that allows you to easily create and share services.</li>
<li><a href="https://github.com/tubesandlube/blimp">blimp</a> &#x1F480; - Uses Docker Machine to easily move a container from one Docker host to another, show containers running against all of your hosts, replicate a container across multiple hosts and more by <a href="https://github.com/defermat">@defermat</a> and <a href="https://github.com/schvin">@schvin</a></li>
<li><a href="http://www.cloudslang.io/">CloudSlang</a> - CloudSlang is a workflow engine to create Docker process automation</li>
<li><a href="https://github.com/clusterdock/clusterdock">clusterdock</a> - Docker container orchestration to enable the testing of long-running cluster deployments</li>
<li><a href="https://github.com/containership/containership">ContainerShip</a> A simple container management platform</li>
<li><a href="https://github.com/Dataman-Cloud/crane">Crane</a> - Control plane based on docker built-in swarm <a href="https://github.com/Dataman-Cloud">@Dataman-Cloud</a></li>
<li><a href="https://github.com/vfarcic/docker-flow-swarm-listener">Docker Flow Swarm Listener</a> &#x1F6A7; - Docker Flow Swarm Listener project is to listen to Docker Swarm events and send requests when a change occurs.. By <a href="https://github.com/vfarcic">@vfarcic</a></li>
<li><a href="https://github.com/DevTable/gantryd">gantryd</a> &#x1F480; - A framework for easy management of docker-based components across machines by <a href="https://github.com/DevTable">@DevTable</a></li>
<li><a href="https://github.com/codeabovelab/haven-platform">Haven</a> - Haven is a simplified container management platform that integrates container, application, cluster, image, and registry managements. By <a href="https://github.com/codeabovelab">@codeabovelab</a></li>
<li><a href="https://github.com/spotify/helios">Helios</a> - A simple platform for deploying and managing containers across an entire fleet of servers by <a href="spotify">@spotify</a></li>
<li><a href="https://github.com/kontena/kontena">Kontena</a> - Application Containers for Masses <a href="https://www.kontena.io/">website</a></li>
<li><a href="https://github.com/kubernetes/kubernetes">Kubernetes</a> - Open source orchestration system for Docker containers by Google</li>
<li><a href="https://github.com/ManageIQ/manageiq">ManageIQ</a> - Discover, optimize and control your hybrid IT. By <a href="https://github.com/ManageIQ">ManageIQ</a></li>
<li><a href="https://github.com/mantl/mantl">Mantl</a> - Mantl is a modern platform for rapidly deploying globally distributed services</li>
<li><a href="https://mesosphere.github.io/marathon/docs/">Marathon</a> - Marathon is a private PaaS built on Mesos. It automatically handles hardware or software failures and ensures that an app is &quot;always on&quot;</li>
<li><a href="https://mesos.apache.org/documentation/latest/docker-containerizer/">Mesos</a> - Resource/Job scheduler for containers, VM&apos;s and physical hosts <a href="https://mesos.apache.org/">@apache</a></li>
<li><a href="https://mesosphere.com/product/">Mesosphere DC/OS</a> &#x1F4B2; - Integrated platform for data and containers built on Apache Mesos by <a href="https://mesosphere.com">@mesosphere</a></li>
<li><a href="https://github.com/nebula-orchestrator">Nebula</a> - A Docker orchestration tool designed to manage massive scale distributed clusters.</li>
<li><a href="https://github.com/hashicorp/nomad">Nomad</a> - Easily deploy applications at any scale. A Distributed, Highly Available, Datacenter-Aware Scheduler by <a href="https://github.com/hashicorp">@hashicorp</a></li>
<li><a href="https://github.com/CenturyLinkLabs/panamax-ui">Panamax</a> &#x1F480; - An open-source project that makes deploying complex containerized apps as easy as Drag-and-Drop by <a href="https://github.com/CenturyLinkLabs">@CenturyLinkLabs</a>.</li>
<li><a href="https://github.com/rancher/rancher">Rancher</a> - An open source project that provides a complete platform for operating Docker in production by <a href="https://github.com/rancher">@rancher</a>.</li>
<li><a href="https://github.com/swarmpit/swarmpit">Swarmpit</a> - Lightweight Docker Swarm orchestration. Swarmpit provides clean way to manage your Docker Swarm cluster with various handful features such Service management, smart search, shared access and private registries.</li>
</ul>
<h3 id="paas">PaaS</h3>
<ul>
<li><a href="https://github.com/ooyala/atlantis">Atlantis</a> &#x1F480; - Atlantis is an Open Source PaaS for HTTP applications built on Docker and written in Go</li>
<li><a href="https://github.com/githubsaturn/captainduckduck">CaptainDuckDuck</a> - Open source Heroku-like platform with a one-liner installer and a GUI for managing apps - with serveral one-click databases and apps.</li>
<li><a href="https://github.com/convox/rack">Convox Rack</a> - Convox Rack is open source PaaS built on top of expert infrastructure automation and devops best practices.</li>
<li><a href="https://github.com/pbertera/dcw">Dcw</a> - Docker-compose SSH wrapper: a very poor man PaaS, exposing the docker-compose and custom-container commands defined in container labels.</li>
<li><a href="https://github.com/dokku/dokku">Dokku</a> - Docker powered mini-Heroku that helps you build and manage the lifecycle of applications (originally by <a href="https://github.com/progrium">@progrium</a>)</li>
<li><a href="https://github.com/remind101/empire">Empire</a> - A PaaS built on top of Amazon EC2 Container Service (ECS)</li>
<li><a href="https://github.com/flynn/flynn">Flynn</a> - A next generation open source platform as a service</li>
<li><a href="https://jelastic.com/">Jelastic</a> - An advanced PaaS for developers that simplifies clustering and complex cloud deployments with powerful web UI and usage-only pricing</li>
<li><a href="https://github.com/nanobox-io/nanobox">Nanobox</a> &#x1F4B2; - An application development platform that creates local environments that can then be deployed and scaled in the cloud.</li>
<li><a href="https://www.openshift.org/">OpenShift</a> - An open source PaaS built on <a href="https://kubernetes.io">Kubernetes</a> and optimized for Dockerized app development and deployment by <a href="https://www.redhat.com/">Red Hat</a></li>
<li><a href="https://github.com/tsuru/tsuru">Tsuru</a> - Tsuru is an extensible and open source Platform as a Service software</li>
<li><a href="https://github.com/deis/workflow">Workflow</a> - The open source PaaS for Kubernetes by <a href="https://github.com/deis">Deis</a>. Formerly Deis v1.</li>
</ul>
<h3 id="reverse-proxy">Reverse Proxy</h3>
<ul>
<li><a href="https://github.com/vfarcic/docker-flow-proxy">docker-flow-proxy</a> - Reconfigures proxy every time a new service is deployed, or when a service is scaled. By <a href="https://github.com/vfarcic">@vfarcic</a></li>
<li><a href="https://github.com/silarsis/docker-proxy">docker-proxy</a> &#x1F480; - Transparent proxy for docker containers, run in a docker container. By <a href="https://github.com/silarsis">@silarsis</a></li>
<li><a href="https://github.com/fabiolb/fabio">fabio</a> - A fast, modern, zero-conf load balancing HTTP(S) router for deploying microservices managed by consul. By <a href="https://github.com/magiconair">@magiconair</a> (Frank Schroeder)</li>
<li><a href="https://github.com/zchee/h2o-proxy">h2o-proxy</a> &#x1F480; - Automated H2O reverse proxy for Docker containers. An alternative to <a href="https://github.com/jwilder/nginx-proxy">jwilder/nginx-proxy</a> by <a href="https://github.com/zchee">@zchee</a></li>
<li><a href="https://github.com/JrCs/docker-letsencrypt-nginx-proxy-companion">Let&apos;s Encrypt Nginx-proxy Companion</a> - A lightweight companion container for the nginx-proxy. It allow the creation/renewal of Let&apos;s Encrypt certificates automatically. By <a href="https://github.com/JrCs">@JrCs</a></li>
<li><a href="https://github.com/mattallty/muguet">muguet</a> - DNS Server &amp; Reverse proxy for Docker environments. By <a href="https://github.com/mattallty">@mattallty</a></li>
<li><a href="https://github.com/jwilder/nginx-proxy">nginx-proxy</a> - Automated nginx proxy for Docker containers using docker-gen by <a href="https://github.com/jwilder">@jwilder</a></li>
<li><a href="https://github.com/tpbowden/swarm-ingress-router">Swarm Ingress Router</a> - Route DNS names to Swarm services based on labels. By <a href="https://github.com/tpbowden/">@tpbowden</a></li>
<li><a href="https://github.com/containous/traefik">Tr&#xE6;f&#x26A;k</a> - Automated reverse proxy and load-balancer for Docker, Mesos, Consul, Etcd&#x2026; By <a href="https://github.com/emilevauge">@EmileVauge</a></li>
</ul>
<h3 id="security">Security</h3>
<ul>
<li><a href="https://anchore.com/cloud/">Anchor Cloud</a> &#x1F4B2; - Hosted version of Anchor Engine by <a href="https://github.com/anchore">@Anchor</a></li>
<li><a href="https://github.com/anchore/anchore">Anchor Engine</a> - Analyze images for CVE vulnerabilities and against custom security policies by <a href="https://github.com/anchore">@Anchor</a></li>
<li><a href="https://www.aquasec.com">Aqua Security</a> &#x1F4B2; - Securing container-based applications from Dev to Production on any platform</li>
<li><a href="https://github.com/genuinetools/bane">bane</a> - AppArmor profile generator for Docker containers by <a href="https://github.com/genuinetools">@genuinetools</a></li>
<li><a href="https://github.com/dev-sec/cis-docker-benchmark">CIS Docker Benchmark</a> - This <a href="https://github.com/chef/inspec">InSpec</a> compliance profile implement the CIS Docker 1.12.0 Benchmark in an automated way to provide security best-practice tests around Docker daemon and containers in a production environment. By <a href="https://github.com/dev-sec">@dev-sec</a></li>
<li><a href="https://github.com/coreos/clair">Clair</a> - Clair is an open source project for the static analysis of vulnerabilities in appc and docker containers. By <a href="https://github.com/coreos">@coreos</a></li>
<li><a href="https://github.com/docker/docker-bench-security">docker-bench-security</a> - script that checks for dozens of common best-practices around deploying Docker containers in production. By <a href="https://github.com/docker">@docker</a></li>
<li><a href="https://github.com/theupdateframework/notary">notary</a> - a server and a client for running and interacting with trusted collections. By <a href="https://github.com/theupdateframework">@TUF</a></li>
<li><a href="https://github.com/OpenSCAP/openscap">oscap-docker</a> - OpenSCAP provides oscap-docker tool which is used to scan Docker containers and images. By RedHat</li>
<li><a href="https://github.com/draios/falco">Sysdig Falco</a> - Sysdig Falco is an open source container security monitor. It can monitor application, container, host, and network activity and alert on unauthorized activity.</li>
<li><a href="https://sysdig.com/product/secure/">Sysdig Secure</a> &#x1F4B2; - Sysdig Secure addresses run-time security through behavioral monitoring and defense, and provides deep forensics based on open source Sysdig for incident response.</li>
<li><a href="https://www.twistlock.com/">Twistlock</a> &#x1F4B2; - Twistlock Security Suite detects vulnerabilities, hardens container images, and enforces security policies across the lifecycle of applications.</li>
</ul>
<h3 id="service-discovery">Service Discovery</h3>
<ul>
<li><a href="https://github.com/cpuguy83/docker-grand-ambassador">Docker Grand Ambassador</a> &#x1F480; - This is a fully dynamic docker link ambassador. + <a href="https://docs.docker.com/engine/admin/ambassador_pattern_linking/">Article</a> by <a href="https://github.com/cpuguy83">@cpuguy83</a></li>
<li><a href="https://github.com/gliderlabs/docker-consul">docker-consul</a> by <a href="https://github.com/progrium">@progrium</a></li>
<li><a href="https://github.com/coreos/etcd">etcd</a> - A highly-available key value store for shared configuration and service discovery by <a href="https://github.com/coreos">@coreOS</a></li>
<li><a href="https://github.com/istio/istio">istio</a> - An open platform to connect, manage, and secure microservices by <a href="istio">@IstioMesh</a></li>
<li><a href="https://github.com/factorish/proxy">proxy</a> &#x1F480; - lightweight nginx based load balancer self using service discovery provided by registrator. by <a href="https://github.com/factorish">@factorish</a></li>
<li><a href="https://github.com/gliderlabs/registrator">registrator</a> - Service registry bridge for Docker by <a href="https://github.com/gliderlabs">@gliderlabs</a> and <a href="https://github.com/progrium">@progrium</a></li>
</ul>
<h3 id="volume-management--data">Volume Management / Data</h3>
<ul>
<li><a href="https://github.com/blockbridge/blockbridge-docker-volume">Blockbridge</a> - The Blockbridge plugin is a volume plugin that provides access to an extensible set of container-based persistent storage options. It supports single and multi-host Docker environments with features that include tenant isolation, automated provisioning, encryption, secure deletion, snapshots and QoS. By <a href="https://github.com/blockbridge">@blockbridge</a></li>
<li><a href="https://github.com/rancher/convoy">Convoy</a> - an open-source Docker volume driver that can snapshot, backup and restore Docker volumes anywhere. By <a href="https://github.com/rancher">@rancher</a></li>
<li><a href="https://github.com/adlogix/docker-machine-nfs">Docker Machine NFS</a> Activates NFS for an existing boot2docker box created through Docker Machine on OS X.</li>
<li><a href="https://github.com/leighmcculloch/docker-unison">Docker Unison</a> A docker volume container using Unison for fast two-way folder sync. Created as an alternative to slow boot2docker volumes on OS X. By <a href="https://github.com/leighmcculloch">@leighmcculloch</a></li>
<li><a href="https://github.com/CWSpear/local-persist">Local Persist</a> Specify a mountpoint for your local volumes (created via <code>docker volume create</code>) so that files will always persist and so you can mount to different directories in different containers.</li>
<li><a href="https://github.com/jelastic-jps/minio">Minio</a> - S3 compatible object storage server in Docker containers</li>
<li><a href="https://github.com/ContainX/docker-volume-netshare">Netshare</a> Docker NFS, AWS EFS, Ceph &amp; Samba/CIFS Volume Plugin. By <a href="https://github.com/ContainX">@ContainX</a></li>
<li><a href="https://portworx.com">portworx</a> &#x1F4B2; - Decentralized storage solution for persistent, shared and replicated volumes.</li>
<li><a href="https://www.quobyte.com/">quobyte</a> &#x1F4B2; - fully fault-tolerant distributed file system with a docker volume driver</li>
<li><a href="https://github.com/rexray/rexray">REX-Ray</a> provides a vendor agnostic storage orchestration engine. The primary design goal is to provide persistent storage for Docker, Kubernetes, and Mesos. By<a href="https://github.com/thecodeteam">@thecodeteam</a> (DELL Technologies)</li>
</ul>
<h3 id="user-interface">User Interface</h3>
<h4 id="desktop">Desktop</h4>
<p>Native desktop applications for managing and montoring docker hosts and clusters</p>
<ul>
<li><a href="https://getcaptain.co/">Captain</a> - Manage containers from the MacOSX menu bar by <a href="https://github.com/rickwong">@RickWong</a></li>
<li><a href="https://github.com/dockeron/dockeron">Dockeron</a> - A project built on Electron + Vue.js for Docker on desktop. <a href="https://github.com/fluency03">@fluency03</a></li>
<li><a href="https://github.com/DockStation/dockstation">DockStation</a> - A developer centric UI to configure, monitor, and manage services and containers <a href="https://twitter.com/dock_station">@dock_station</a></li>
<li><a href="https://github.com/jplhomer/lifeboat">Lifeboat</a> - An easy way to launch Docker projects with a graphical interface on your Mac. <a href="https://github.com/jplhomer">@jplhomer</a></li>
</ul>
<h4 id="terminal">Terminal</h4>
<ul>
<li><a href="https://github.com/jenssegers/captain">captain</a> - Easily start and stop docker compose projects from any directory. By <a href="https://github.com/jenssegers">@jenssegers</a></li>
<li><a href="https://github.com/yadutaf/ctop">ctop (1)</a> - A command line / text based Linux Containers monitoring tool that works just like you expect (Python) by <a href="https://github.com/yadutaf">@yadutaf</a></li>
<li><a href="https://github.com/bcicen/ctop">ctop (2)</a> - Top-like interface for container metrics (Golang) by <a href="https://github.com/bcicen/">@bcicen</a></li>
<li><a href="https://github.com/vutran/dext-docker-registry-plugin">dext-docker-registry-plugin</a> - Search the Docker Registry with the Dext smart launcher.</li>
<li><a href="https://github.com/mayflower/docker-ls">docker-ls</a> - CLI tools for browsing and manipulating docker registries by <a href="https://github.com/mayflower">@mayflower</a></li>
<li><a href="https://github.com/icecrime/docker-mon">Docker-mon</a> &#x1F480; - Console-based Docker monitoring by <a href="https://github.com/icecrime">@icecrime</a></li>
<li><a href="https://github.com/Silex/docker.el">docker.el</a> Manage docker from Emacs by <a href="https://github.com/Silex">Silex</a></li>
<li><a href="https://github.com/docker/dockercraft">dockercraft</a> - Docker + Minecraft = Dockercraft by <a href="https://github.com/docker">@docker</a></li>
<li><a href="https://github.com/spotify/dockerfile-mode">dockerfile-mode</a> An emacs mode for handling Dockerfiles by <a href="https://github.com/spotify">spotify</a></li>
<li><a href="https://github.com/crosbymichael/dockersql">dockersql</a> - A command line interface to query Docker using SQL by <a href="https://github.com/crosbymichael">@crosbymichael</a></li>
<li><a href="https://github.com/lirantal/dockly">dockly</a> - An interactive shell UI for managing Docker containers by <a href="https://github.com/lirantal">@lirantal</a></li>
<li><a href="https://github.com/moncho/dry">dry</a> - An interactive CLI for Docker containers by <a href="https://github.com/moncho">@moncho</a></li>
<li><a href="https://github.com/howtowhale/dvm">DVM</a> - Docker version manager by <a href="https://github.com/howtowhale">@howtowhale</a></li>
<li><a href="https://github.com/marty90/multidocker">MultiDocker</a> - Create a secure multi-user Docker machine, where each user is segregated into an indepentent container.</li>
<li><a href="https://github.com/jpetazzo/nsenter">ns-enter</a> - no more ssh, enter name spaces of container by <a href="https://github.com/jpetazzo">@jpetazzo</a></li>
<li><a href="https://github.com/adrianmo/powerline-docker">Powerline-Docker</a> - A Powerline segment for showing the status of Docker containers by <a href="https://github.com/adrianmo">@adrianmo</a></li>
<li><a href="https://github.com/genuinetools/reg">reg</a> - Docker registry v2 command line client by <a href="https://github.com/genuinetools">@genuinetools</a></li>
<li><a href="https://github.com/JonathonReinhart/scuba">scuba</a> - Transparently use Docker containers to encapsulate software build environments, by <a href="https://github.com/JonathonReinhart">@JonathonReinhart</a></li>
<li><a href="https://github.com/TomasTomecek/sen">sen</a> - Terminal user interface for docker engine, by <a href="https://github.com/TomasTomecek">@TomasTomecek</a></li>
<li><a href="https://github.com/segersniels/supdock">supdock</a> - &#x1F6A7; Allows for slightly more visual usage of Docker with an interactive prompt by <a href="https://github.com/segersniels">@segersniels</a></li>
<li><a href="https://github.com/qazbnm456/tsaotun">tsaotun</a> - Python based Assistance for Docker by <a href="https://github.com/qazbnm456">@qazbnm456</a></li>
<li><a href="https://github.com/j-bennet/wharfee">wharfee</a> - Autocompletion and syntax highlighting for Docker commands. by <a href="https://github.com/j-bennet">@j-bennet</a></li>
</ul>
<h4 id="web">Web</h4>
<ul>
<li><a href="https://github.com/klausmeyer/docker-registry-browser">Docker Registry Browser</a> - Web Interface for the Docker Registry HTTP API v2 by <a href="https://github.com/klausmeyer">@klausmeyer</a></li>
<li><a href="https://github.com/squidnyan/docker-registry-ui">Docker Registry UI</a> - A web UI for easy private/local Docker Registry integration by <a href="https://github.com/squidnyan">@squidnyan</a></li>
<li><a href="https://github.com/mkuchin/docker-registry-web">docker-registry-web</a> - Web UI, authentication service and event recorder for private docker registry v2 by <a href="https://github.com/mkuchin">@mkuchin</a></li>
<li><a href="https://github.com/dockersamples/docker-swarm-visualizer">docker-swarm-visualizer</a> - Visualizes Docker services on a Docker Swarm (for running demos).</li>
<li><a href="https://github.com/Electrofenster/dockerding-on-rails">dockering-on-rails</a> &#x1F480; - Simple Web-Interface for Docker with a lot of features by <a href="https://github.com/Electrofenster/">@Electrofenster</a></li>
<li><a href="https://github.com/Simone-Erba/DockerSurfer">DockerSurfer</a> &#x1F6A7; - A web service for analyze and browse dependencies between Docker images in the Docker registry, by <a href="https://github.com/Simone-Erba/">@Simone-Erba</a></li>
<li><a href="https://github.com/OctoLinker/OctoLinker">OctoLinker</a> - A browser extension for GitHub that makes the image name in a <code>Dockerfile</code> clickable and redirect you to the related Docker Hub page.</li>
<li><a href="https://github.com/portainer/portainer">Portainer</a> - A lightweight management UI for managing your Docker hosts or Docker Swarm clusters by <a href="https://github.com/portainer">@portainer</a></li>
<li><a href="https://github.com/SUSE/Portus">Portus</a> - Authorization service and frontend for Docker registry (v2) by <a href="https://github.com/SUSE">@SUSE</a></li>
<li><a href="https://github.com/ozlerhakan/rapid">Rapid Dashboard</a> - A simple query dashboard to use Docker Remote API by <a href="https://github.com/ozlerhakan/">@ozlerhakan</a></li>
<li><a href="https://github.com/tobegit3hub/seagull">Seagull</a> - Friendly Web UI to monitor docker daemon. by <a href="https://github.com/tobegit3hub">@tobegit3hub</a></li>
<li><a href="https://github.com/shipyard/shipyard">Shipyard</a> &#x1F480; - Shipyard enables multi-host, Docker cluster management using Docker Swarm.</li>
</ul>
<h2 id="docker-images">Docker Images</h2>
<h3 id="base-tools">Base Tools</h3>
<p>Tools and applications that are either installed inside containers or designed to be run as a <a href="https://docs.microsoft.com/en-us/azure/architecture/patterns/sidecar">sidecar</a></p>
<ul>
<li><a href="https://github.com/genuinetools/amicontained">amicontained</a> - Container introspection tool. Find out what container runtime is being used as well as features available by <a href="https://github.com/genuinetools">@genuinetools</a></li>
<li><a href="https://github.com/prologic/autodock">autodock</a> - Daemon for Docker Automation by <a href="https://github.com/prologic">@prologic</a></li>
<li><a href="https://github.com/garywiz/chaperone">Chaperone</a> - A single PID1 process designed for docker containers. Does user management, log management, startup, zombie reaping, all in one small package. by <a href="https://github.com/garywiz">@garywiz</a></li>
<li><a href="https://github.com/coreos">CoreOS</a> - Linux for Massive Server Deployments</li>
<li><a href="https://github.com/gliderlabs/docker-alpine">docker-alpine</a> - A super small Docker base image <em>(5MB)</em> using Alpine Linux by <a href="https://github.com/gliderlabs">@gliderlabs</a></li>
<li><a href="https://github.com/jwilder/docker-gen">docker-gen</a> - Generate files from docker container meta-data by <a href="https://github.com/jwilder">@jwilder</a></li>
<li><a href="https://github.com/jwilder/dockerize">dockerize</a> - Utility to simplify running applications in docker containers by <a href="https://github.com/jwilder">@jwilder</a></li>
<li><a href="https://github.com/tianon/gosu">GoSu</a> - Run this specific application as this specific user and get out of the pipeline (entrypoint script tool) by <a href="https://github.com/tianon">@tianon</a></li>
<li><a href="https://github.com/sindresorhus/is-docker">is-docker</a> - Check if the process is running inside a Docker container by <a href="https://github.com/sindresorhus/awesome">@sindresorhus</a></li>
<li><a href="https://github.com/aptible/supercronic">supercronic</a> - crontab-compatible job runner, designed specifically to run in containers by <a href="https://github.com/aptible/">@aptible</a></li>
<li><a href="https://github.com/vorakl/TrivialRC">TrivialRC</a> - A minimalistic Runtime Configuration system and process manager for containers <a href="https://github.com/vorakl">@vorakl</a></li>
</ul>
<h3 id="builder">Builder</h3>
<p>Applications designed to help or simplify building <strong>new</strong> images</p>
<ul>
<li><a href="https://github.com/GoogleCloudPlatform/container-diff">container-diff</a> - An image tool for comparing and analzying container images by <a href="https://github.com/GoogleCloudPlatform">@GoogleCloudPlatform</a></li>
<li><a href="https://github.com/mutable/container-factory">container-factory</a> - Produces Docker images from tarballs of application source code by <a href="https://github.com/mutable">@mutable</a></li>
<li><a href="https://github.com/mdlavin/copy-docker-image">copy-docker-image</a> - Copy a Docker image between registries without a full Docker installation by <a href="https://github.com/mdlavin">@mdlavin</a></li>
<li><a href="https://github.com/alibaba/derrick">Derrick</a> - A tool help you to automate the generation of Dockerfile and dockerize application by scanning the code. By <a href="https://github.com/alibaba">@alibaba</a>.</li>
<li><a href="https://github.com/wercker/dlayer">dlayer</a> - Stats collector for Docker layers by <a href="https://github.com/wercker">@wercker</a></li>
<li><a href="https://github.com/mudler/docker-companion">docker-companion</a> - A command line tool written in Golang to squash and unpack docker images by <a href="https://github.com/mudler/">@mudler</a></li>
<li><a href="https://github.com/CtripCloud/docker-make">docker-make</a> - Build, tag,and push a bunch of related docker images via a single command.</li>
<li><a href="https://github.com/bcicen/docker-replay">docker-replay</a> - Generate <code>docker run</code>command and options from running containers. By <a href="https://github.com/bcicen">bcicen</a></li>
<li><a href="https://github.com/docker-slim/docker-slim">DockerSlim</a> shrinks fat Docker images creating the smallest possible images.</li>
<li><a href="https://github.com/swipely/dockly">Dockly</a> - Dockly is a gem made to ease the pain of packaging an application in Docker by <a href="https://github.com/swipely/">@swipely</a></li>
<li><a href="https://github.com/jlhawn/dockramp">dockramp</a> &#x1F480; - Proof of Concept: A Client Driven Docker Image Builder by <a href="https://github.com/jlhawn">@jlhawn</a></li>
<li><a href="http://flyimg.io/">flyimg</a> - Docker image resizing, cropping, and compression on the fly.</li>
<li><a href="https://github.com/genuinetools/img">img</a> - Standalone, daemon-less, unprivileged Dockerfile and OCI compatible container image builder by <a href="https://github.com/genuinetools">@genuinetools</a></li>
<li><a href="https://microbadger.com">MicroBadger</a> - Analyze the contents of images and add metadata labels</li>
<li><a href="https://www.packer.io/docs/builders/docker.html">packer</a> - Hashicorp tool to build machine images including docker image integrated with configuration management tools like chef, puppet, ansible</li>
<li><a href="https://github.com/duedil-ltd/portainer">portainer</a> - Apache Mesos framework for building Docker images by <a href="https://github.com/duedil-ltd">@duedil-ltd</a></li>
<li><a href="https://github.com/lavie/runlike">runlike</a> &#x1F6A7; - Generate <code>docker run</code>command and options from running containers by <a href="https://github.com/lavie">@lavie</a></li>
<li><a href="https://github.com/djosephsen/skinnywhale">SkinnyWhale</a> &#x1F480; - Skinnywhale helps you make smaller (as in megabytes) Docker containers.</li>
<li><a href="https://github.com/Gueils/whales">Whales</a> - A tool to automatically dockerize your applications by <a href="https://github.com/IcaliaLabs">@icalialabs</a>.</li>
</ul>
<h3 id="dockerfile">Dockerfile</h3>
<ul>
<li><a href="https://github.com/garywiz/chaperone-docker">chaperone-docker</a> - A set of images using the Chaperone process manager, including a lean Alpine image, LAMP, LEMP, and bare-bones base kits.</li>
<li><a href="http://jrruethe.github.io/blog/2015/09/20/dockerfile-generator/">Dockerfile Generator</a></li>
<li><a href="http://dockerfile.github.io/">Dockerfile Project</a> : Trusted Automated Docker Builds. Dockerfile Project maintains a central repository of Dockerfile for various popular open source software services runnable on a Docker container.</li>
<li><a href="https://github.com/vektorcloud">Vektorcloud</a> - A collection of minimal, Alpine-based Docker images</li>
</ul>
<p>Examples by:</p>
<ul>
<li><a href="https://github.com/arun-gupta/docker-images">@arun-gupta</a></li>
<li><a href="https://github.com/awesome-startup/docker-compose">@awesome-startup</a></li>
<li><a href="https://github.com/crosbymichael/Dockerfiles">@crosbymichael</a></li>
<li><a href="https://github.com/jessfraz/Dockerfiles">@jessfraz</a></li>
<li><a href="https://github.com/komljen/dockerfile-examples">@komljen</a></li>
<li><a href="https://github.com/kstaken/dockerfile-examples">@kstaken</a></li>
<li><a href="https://github.com/ondrejmo/Dockerfiles">@ondrejmo</a></li>
<li><a href="https://github.com/pandrew/dockerfiles">@pandrew</a></li>
<li><a href="https://github.com/vimagick/dockerfiles">@vimagick</a></li>
</ul>
<h3 id="linter">Linter</h3>
<ul>
<li><a href="https://github.com/projectatomic/dockerfile_lint">dockerfile_lint</a> - A rule-based &apos;linter&apos; for Dockerfiles by <a href="https://github.com/redhataccess">@redhataccess</a></li>
<li><a href="https://github.com/replicatedhq/dockerfilelint">Dockerfilelint</a> - A node module that analyzes a Dockerfile and looks for common traps, mistakes and helps enforce best practices by <a href="https://github.com/replicatedhq">@replicatedhq</a></li>
<li><a href="https://github.com/jessfraz/dockfmt">dockfmt</a> &#x1F6A7; - Dockerfile formatter and parser by <a href="https://github.com/jessfraz">@jessfraz</a></li>
<li><a href="https://github.com/hadolint/hadolint">Hadolint</a> - A Dockerfile linter written in Haskell by <a href="https://github.com/lukasmartinelli">@lukasmartinelli</a></li>
<li><a href="https://github.com/jeromepin/whale-linter">Whale-linter</a> - A simple and small Dockerfile linter written in Python3+ without dependencies by <a href="https://github.com/jeromepin">@jeromepin</a></li>
</ul>
<h3 id="metadata">Metadata</h3>
<ul>
<li><a href="https://github.com/opencontainers/image-spec/blob/master/annotations.md">opencontainer</a> - A convention and shared namespace for Docker labels defined by OCI Image Spec.</li>
</ul>
<h3 id="registry">Registry</h3>
<p>Services to securely store your Docker images.</p>
<ul>
<li><a href="https://aws.amazon.com/ecr/">Amazon EC2 Container Registry</a> Amazon EC2 Container Registry (ECR) is a fully-managed Docker container registry that makes it easy for developers to store, manage, and deploy Docker container images.</li>
<li><a href="https://azure.microsoft.com/de-de/services/container-registry/">Azure Container Registry</a> Manage a Docker private registry as a first-class Azure resource</li>
<li><a href="https://github.com/RedCoolBeans/cargos-buildroot">CargoOS</a> - A bare essential OS for running the Docker Engine on bare metal or Cloud. By <a href="https://github.com/RedCoolBeans">@RedCoolBeans</a></li>
<li><a href="https://cycle.io/">Cycle.io</a> Bare-metal container hosting.</li>
<li><a href="https://hub.docker.com/">Docker Hub</a> provided by Docker Inc.</li>
<li><a href="https://github.com/docker/distribution">Docker Registry v2</a> - The Docker toolset to pack, ship, store, and deliver content</li>
<li><a href="https://github.com/netvarun/docket">Docket</a> - Custom docker registry that allows for lightning fast deploys through bittorrent by <a href="https://github.com/netvarun/">@netvarun</a></li>
<li><a href="https://github.com/puppetlabs/europa">Europa &#x1F4B2;</a> - Private docker registry with support for image pipelines and webhooks. By <a href="https://github.com/puppetlabs">@puppetlabs</a></li>
<li><a href="https://cloud.google.com/container-registry/">GCE Container Registry</a> Fast, private Docker image storage on Google Cloud Platform</li>
<li><a href="https://docs.gitlab.com/ce/user/project/container_registry.html">GitLab Container Registry</a> - Repositories focused on using it images in GitLab CI</li>
<li><a href="https://jfrog.com/artifactory/">JFrog Artifactory</a> - Artifact Repository Manager, can be used as private Docker Registry as well</li>
<li><a href="https://private-docker-registry.com">Private Docker Registry &#x1F4B2;</a> - Dedicated Conainer Registry Service with unlimited private repositories, users, teams, namespaces together with enterprise grade authentication LDAP/AD/OAuth/SAML.</li>
<li><a href="https://quay.io/">Quay.io</a> (part of CoreOS) - Secure hosting for private Docker repositories</li>
<li><a href="https://github.com/noteed/rescoyl">Rescoyl</a> - Private Docker registry (free and open source) by <a href="https://github.com/noteed">@noteed</a></li>
<li><a href="https://www.sonatype.com/nexus-repository-oss">Sonatype Nexus</a> - Repository with Universal Support, also for Docker images</li>
<li><a href="https://github.com/treescale">TreeScale</a> - Build and Distribute container based applications. By <a href="https://github.com/tigranbs">@tigranbs</a></li>
<li><a href="http://vmware.github.io/harbor/">VMWare Harbor</a> Project Harbor by VMWare is an enterprise-class registry server that stores and distributes Docker images. Harbor extends the open source Docker Distribution by adding the functionalities usually required by an enterprise, such as security, identity and management.</li>
</ul>
<h2 id="development-with-docker">Development with Docker</h2>
<h3 id="api-client">API Client</h3>
<ul>
<li><a href="https://github.com/instacart/ahab">ahab</a> - Docker event handling with Python by <a href="https://github.com/instacart">@instacart</a></li>
<li><a href="https://github.com/gesellix/docker-client">Docker Client for JVM</a> - A Docker remote api client library for the JVM, written in Groovy by <a href="https://github.com/gesellix">@gesellix</a></li>
<li><a href="https://gitlab.com/masaeedu/docker-client">Docker Client TypeScript</a> - Docker API client for JavaScript, automatically generated from Swagger API definition from moby repository. By <a href="https://github.com/masaeedu">@masaeedu</a></li>
<li><a href="https://github.com/whisklabs/docker-it-scala">docker-it-scala</a> - Docker integration testing kit with Scala by <a href="https://github.com/whisklabs">@whisklabs</a></li>
<li><a href="https://github.com/fabric8io/docker-maven-plugin">docker-maven-plugin</a> - A Maven plugin for running and creating Docker images by <a href="https://github.com/fabric8io">@fabric8io</a></li>
<li><a href="https://github.com/Microsoft/Docker-PowerShell">Docker-PowerShell</a> - PowerShell Module for Docker</li>
<li><a href="https://github.com/Microsoft/Docker.DotNet">Docker.DotNet</a> - C#/.NET HTTP client for the Docker remote API by <a href="ahmetalpbalkan">@ahmetalpbalkan</a></li>
<li><a href="https://github.com/spotify/dockerfile-maven">dockerfile-maven</a> - A Maven plugin for building and pushing Docker images by <a href="https://github.com/spotify">@spotify</a></li>
<li><a href="https://github.com/apocas/dockerode">dockerode</a> - Docker Remote API node.js module by <a href="https://github.com/apocas">@apocas</a></li>
<li><a href="https://github.com/eon01/DoMonit">DoMonit</a> - A simple Docker Monitoring wrapper For Docker API</li>
<li><a href="https://github.com/fsouza/go-dockerclient/">go-dockerclient</a> - Go HTTP client for the Docker remote API by <a href="https://github.com/fsouza/">@fsouza</a></li>
<li><a href="https://github.com/gesellix/gradle-docker-plugin">Gradle Docker plugin</a> - A Docker remote api plugin for Gradle by <a href="https://github.com/gesellix">@gesellix</a></li>
<li><a href="https://github.com/docker/libcompose">libcompose</a> - Go library for Docker Compose.</li>
<li><a href="https://github.com/clusterhq/powerstrip">powerstrip</a> &#x1F480; - A tool for prototyping Docker extensions by <a href="https://github.com/clusterhq">@clusterhq</a></li>
<li><a href="https://github.com/Tapad/sbt-docker-compose">sbt-docker-compose</a> - Integrates Docker Compose functionality into sbt by <a href="https://github.com/kurtkopchik/">@kurtkopchik</a></li>
<li><a href="https://github.com/marcuslonnberg/sbt-docker">sbt-docker</a> - Create Docker images directly from sbt by <a href="https://github.com/marcuslonnberg">@marcuslonnberg</a></li>
</ul>
<h3 id="cicd">CI/CD</h3>
<ul>
<li><a href="https://buddy.works">Buddy</a> - The best of Git, build &amp; deployment tools combined into one powerful tool that supercharged our development.</li>
<li><a href="https://github.com/harbur/captain">Captain</a> - Convert your Git workflow to Docker containers ready for Continuous Delivery by <a href="https://github.com/harbur">@harbur</a>.</li>
<li><a href="https://github.com/caicloud/cyclone">Cyclone</a> - A cloud native CI/CD platform built for container workflow by <a href="https://github.com/caicloud">@caicloud</a>.</li>
<li><a href="https://github.com/jenkinsci/docker-plugin/">Docker plugin for Jenkins</a> - The aim of the docker plugin is to be able to use a docker host to dynamically provision a slave, run a single build, then tear-down that slave.</li>
<li><a href="https://github.com/drone/drone">Drone</a> - Continuous integration server built on Docker and configured using YAML files.</li>
<li><a href="https://about.gitlab.com/gitlab-ci/">GitLab CI</a> - GitLab has integrated CI to test, build and deploy your code with the use of GitLab runners.</li>
<li><a href="https://github.com/gocd/gocd-docker">GOCD-Docker</a>Go Server and Agent in docker containers to provision.</li>
<li><a href="https://github.com/francescou/docker-continuous-deployment">Microservices Continuous Deployment</a> - Continuous deployment of a microservices application.</li>
<li><a href="https://github.com/stelligent/mu">mu</a> - Tool to configure CI/CD of your container applications via AWS CodePipeline, CodeBuild and ECS <a href="https://github.com/stelligent">@Stelligent</a></li>
<li><a href="http://screwdriver.cd/">Screwdriver</a> - Yahoo&apos;s OpenSource buildplatform designed for Continous Delivery.</li>
<li><a href="https://github.com/Stratoscale/skipper">Skipper</a> - Easily dockerize your Git repository by <a href="https://github.com/Stratoscale">@Stratoscale</a></li>
<li><a href="https://github.com/ghostsquad/swarmci">SwarmCI</a> - Create a distributed, isolated task pipeline in your Docker Swarm.</li>
<li><a href="https://github.com/v2tec/watchtower">Watchtower</a> - Automatically update running Docker containers by <a href="https://github.com/CenturyLinkLabs">@CenturyLinkLabs</a></li>
</ul>
<h3 id="development-environment">Development Environment</h3>
<ul>
<li><a href="https://github.com/binci/binci">Binci</a> - Containerize your development workflow. (formerly DevLab by <a href="https://github.com/TechnologyAdvice">@TechnologyAdvice</a>)</li>
<li><a href="https://github.com/boot2docker/boot2docker">Boot2Docker</a> - Docker for OSX and Windows</li>
<li><a href="https://github.com/lstephen/construi">construi</a> - Run your builds inside a Docker defined environment by <a href="https://github.com/lstephen">@lstephen</a></li>
<li><a href="https://github.com/fgrehm/devstep">Devstep</a> &#x1F480; - Development environments powered by Docker and buildpacks by <a href="https://github.com/fgrehm">@fgrehm</a></li>
<li><a href="https://github.com/codekitchen/dinghy">Dinghy</a> - An alternative way to use Docker on Mac OS X using Docker Machine with virtualbox, vmware, xhyve or parallels</li>
<li><a href="https://github.com/nlf/dlite">DLite</a> - Simplest way to use Docker on OSX, no VM needed. By <a href="https://github.com/nlf">@nlf</a></li>
<li><a href="https://github.com/nandoquintana/docker-missing-tools">Docker Missing Tools</a> - A set of bash commands to shortcut typical docker dev-ops. An alternative to creating typical helper scripts like &quot;build.sh&quot; and &quot;deploy.sh&quot; inside code repositories. By <a href="https://github.com/nandoquintana">@NandoQuintana</a>.</li>
<li><a href="https://github.com/brikis98/docker-osx-dev">Docker osx dev</a> - A productive development environment with Docker on OS X by <a href="https://github.com/brikis98">@brikis98</a></li>
<li><a href="https://github.com/ph3nol/docker-arch">Docker-Arch</a> - Generate Web/CLI projects Dockerized development environments, from 1 simple YAML file. By <a href="https://github.com/ph3nol">@Ph3nol</a></li>
<li><a href="http://docker-sync.io/">Docker-sync</a> - Drastically improves performance (<a href="https://github.com/EugenMayer/docker-sync/wiki/4.-Performance">50-70x</a>) when using Docker for development on Mac OS X/Windows and Linux while sharing code to the container. By <a href="https://github.com/EugenMayer">@EugenMayer</a></li>
<li><a href="https://github.com/shyiko/docker-vm">docker-vm</a> - Simple and transparent alternative to boot2docker (backed by Vagrant) by <a href="https://github.com/shyiko">@shyiko</a></li>
<li><a href="http://dusty.gc.com/">Dusty</a> - Managed Docker development environments on OS X</li>
<li><a href="http://www.eclipse.org/che/">Eclipse Che</a> - Developer workspace server with Docker runtimes, cloud IDE, next-generation Eclipse IDE</li>
<li><a href="https://github.com/PhilippHeuer/EnvCLI">EnvCLI</a> - Replace your local installation of Node, Go, &#x2026; with project-specific docker containers. By <a href="https://github.com/PhilippHeuer">@PhilippHeuer</a></li>
<li><a href="https://github.com/bsideup/forward2docker">forward2docker</a> &#x1F480; - Utility to auto forward a port from localhost into ports on Docker containers running in a boot2docker VM by <a href="https://github.com/bsideup">@bsideup</a></li>
<li><a href="https://github.com/tailhook/vagga">Vagga</a> - Vagga is a containerisation tool without daemons. It is a fully-userspace container engine inspired by Vagrant and Docker, specialized for development environments by <a href="https://github.com/tailhook/">@tailhook</a></li>
<li><a href="https://github.com/awvessel/vessel">Vessel</a> &#x1F480; - Automates the setup &amp; use of dockerized development environments by <a href="https://github.com/awvessel">@awvessel</a></li>
</ul>
<h3 id="garbage-collection">Garbage Collection</h3>
<ul>
<li><a href="https://github.com/tjamet/caduc">caduc</a> - A docker garbage collector cleaning stuff you did not use recently</li>
<li><a href="https://github.com/zzrotdesign/docker-clean">Docker Clean</a> - A script that cleans Docker containers, images and volumes by <a href="https://github.com/zzrotdesign">@zzrotdesign</a></li>
<li><a href="https://github.com/meltwater/docker-cleanup">Docker-cleanup</a> - Automatic Docker image, container and volume cleanup by <a href="https://github.com/meltwater">@meltwater</a></li>
<li><a href="https://github.com/konstruktoid/docker-garby">docker-garby</a> - Docker garbage collection script by <a href="https://github.com/konstruktoid">@konstruktoid</a>.</li>
<li><a href="https://github.com/spotify/docker-gc">docker-gc</a> - A cron job that will delete old stopped containers and unused images by <a href="https://github.com/spotify">@spotify</a></li>
<li><a href="https://github.com/rancher/sherdock">sherdock</a> &#x1F480; - Automatic GC of images based on regexp by <a href="https://github.com/rancher">@rancher</a></li>
</ul>
<h3 id="serverless">Serverless</h3>
<ul>
<li><a href="https://github.com/appcelerator/amp">AMP</a> - The open source unified CaaS/FaaS platform for Docker, batteries included. By <a href="https://github.com/appcelerator/">@Appcelerator</a></li>
<li><a href="https://github.com/apache/incubator-openwhisk">Apache OpenWhisk</a> - a serverless, open source cloud platform that executes functions in response to events at any scale. By <a href="https://github.com/apache">@apache</a></li>
<li><a href="https://github.com/lambci/docker-lambda">Docker-Lambda</a> - Docker images and test runners that replicate the live AWS Lambda environment. By <a href="https://github.com/lambci">@lamb-ci</a></li>
<li><a href="https://github.com/bfirsh/funker-example-voting-app">Funker</a> - Functions as Docker containers example voting app. By <a href="https://github.com/bfirsh">@bfirsh</a></li>
<li><a href="https://github.com/iron-io/functions">IronFunctions</a> - The serverless microservices platform FaaS (Funcitons as a Service) which uses Docker containers to run Any language or AWS Lambda functions</li>
<li><a href="https://github.com/openfaas/faas">OpenFaaS</a> - A complete serverless functions framework for Docker and Kubernetes. By <a href="https://github.com/openfaas">OpenFaaS</a></li>
<li><a href="https://github.com/grycap/scar">SCAR</a> - Serverless Container-aware Architectures (SCAR) is a serverless framework that allows easy deployment and execution of containers (e.g. Docker) in Serverless environments (e.g. Lambda) by <a href="https://github.com/grycap">@grycap</a></li>
</ul>
<h3 id="testing">Testing</h3>
<ul>
<li><a href="https://github.com/GoogleCloudPlatform/container-structure-test">Container Structure Test</a> - A framework to validate the structure of an image by checking the outputs of commands or the contents of the filesystem. By <a href="https://github.com/GoogleCloudPlatform">@GoogleCloudPlatform</a></li>
<li><a href="https://github.com/aelsabbahy/goss/tree/master/extras/dgoss">dgoss</a> - A fast YAML based tool for validating docker containers.</li>
<li><a href="https://github.com/zuazo/dockerspec">DockerSpec</a> - A small Ruby Gem to run RSpec and Serverspec, Infrataster and Capybara tests against Dockerfiles or Docker images easily. By <a href="https://github.com/zuazo">@zuazo</a></li>
<li><a href="https://github.com/dockunit/platform">Dockunit</a> &#x1F480; - Docker based integration tests. A simple Node based utility for running Docker based unit tests. By <a href="https://github.com/dockunit">@dockunit</a></li>
<li><a href="https://github.com/chef/inspec">InSpec</a> - InSpec is an open-source testing framework for infrastructure with a human- and machine-readable language for specifying compliance, security and policy requirements. By <a href="https://github.com/chef">@chef</a></li>
<li><a href="https://github.com/alexei-led/pumba">Pumba</a> - Chaos testing tool for Docker. Can be deployed on kubernetes and CoreOS cluster. By <a href="https://github.com/alexei-led">@alexei-led</a></li>
</ul>
<h3 id="wrappers">Wrappers</h3>
<ul>
<li><a href="http://docs.ansible.com/ansible/latest/docker_container_module.html">Ansible</a> - Manage the life cycle of Docker containers. By RedHat</li>
<li><a href="https://github.com/azukiapp/azk">Azk</a> - Orchestrate development enviornments on your local machine by <a href="https://github.com/azukiapp">@azukiapp</a></li>
<li><a href="https://github.com/cortexmedia/Beluga">Beluga</a> &#x1F480; - CLI to deploy docker containers on a single server or low amount of servers. By <a href="https://github.com/cortexmedia">@cortextmedia</a></li>
<li><a href="https://github.com/docker-exec/dexec">dexec</a> - Command line interface written in Go for running code with Docker Exec images.</li>
<li><a href="https://github.com/benzaita/docker-do">docker-do</a> - hassle-free docker run, like <code>env</code> but for docker by <a href="https://github.com/benzaita">@benzaita</a></li>
<li><a href="https://github.com/CenturyLinkLabs/dray">Dray</a> - An engine for managing the execution of container-based workflows by <a href="https://github.com/CenturyLinkLabs">@CenturyLinkLabs</a></li>
<li><a href="https://github.com/mattes/fugu">FuGu</a> - Docker run wrapper without orchestration by <a href="https://github.com/mattes">@mattes</a></li>
<li><a href="https://docs.saltstack.com/en/latest/ref/modules/all/salt.modules.dockerng.html#module-salt.modules.dockerng">SaltStack Docker module</a> - SaltStack Docker module</li>
<li><a href="http://ianmiell.github.io/shutit/">Shutit</a> - Tool for building and maintaining complex Docker deployments by <a href="https://github.com/ianmiell">@ianmiell</a></li>
<li><a href="http://subuser.org">subuser</a> - Makes it easy to securely and portably run graphical desktop applications in Docker</li>
<li><a href="https://ramitsurana.github.io/turbo/">Turbo</a> - Simple and Powerful utility for docker. By <a href="https://github.com/ramitsurana">@ramitsurana</a></li>
<li><a href="https://github.com/indigo-dc/udocker">udocker</a> - A tool to execute simple docker containers in batch or interactive systems without root privileges by <a href="https://github.com/indigo-dc">@inidigo-dc</a></li>
<li><a href="https://www.vagrantup.com/docs/docker/basics.html">Vagrant - Docker provider</a> - Good starting point is <a href="https://github.com/bubenkoff/vagrant-docker-example">vagrant-docker-example</a> by <a href="https://github.com/bubenkoff">@bubenkoff</a></li>
</ul>
<h2 id="services-based-on-docker-heavy_dollar_sign">Services based on Docker (&#x1F4B2;)</h2>
<h3 id="ci-services">CI Services</h3>
<ul>
<li><a href="https://circleci.com/">CircleCI</a> - Push or pull Docker images from your build environment, or build and run containers right on CircleCI.</li>
<li><a href="https://codefresh.io">CodeFresh</a> - Everything you need to build, test, and share your Docker applications. Provides automated end to end testing.</li>
<li><a href="https://codeship.com/features/pro">CodeShip</a> - Work with your established Docker workflows while automating your testing and deployment tasks with our hosted platform dedicated to speed and security.</li>
<li><a href="https://concourse-ci.org">ConcourseCI</a> - A CI SaaS platform for developers and DevOps teams pipeline oriented.</li>
<li><a href="https://console.bluemix.net/devops/getting-started?auth=false">IBM Bluemix Continous Delivery</a> - Continuous delivery using a pipeline deployment onto IBM containers on Bluemix.</li>
<li><a href="https://semaphoreci.com/product/docker">Semaphore CI</a> &#x2014; A high-performance cloud solution that makes it easy to build, test and ship your containers to production.</li>
<li><a href="https://app.shippable.com/">Shippable</a> - A SaaS platform for developers and DevOps teams that significantly reduces the time taken for code to be built, tested and deployed to production.</li>
<li><a href="https://travis-ci.org/">TravisCI</a> - A Free github projects continuous integration Saas platform for developers and Devops.</li>
<li><a href="http://www.wercker.com/">Wercker</a> - A Docker-Native continous integration &amp; deployment Automation platform for Kubernetes &amp; Microservice Deployments.</li>
</ul>
<h3 id="caas">CaaS</h3>
<ul>
<li><a href="https://aws.amazon.com/ecs/">Amazon ECS</a> - A management service on EC2 that supports Docker containers.</li>
<li><a href="https://arukas.io/">Arukas</a> - Heroku-inspired CaaS</li>
<li><a href="https://azure.microsoft.com/en-us/services/container-service/">Azure ACS</a> - A management service on Azure Virtual Machines that supports Docker containers.</li>
<li><a href="https://www.cloud66.com">Cloud 66</a> - Full-stack hosted container management as a service</li>
<li><a href="https://codenvy.com">Codenvy</a> - One-click Docker environments and cloud workspace for development teams</li>
<li><a href="https://containership.io">ContainerShip Cloud</a> - Multi-Cloud Container Hosting Automation Platform.</li>
<li><a href="https://cloud.docker.com/">Docker Cloud</a> - Former Tutum</li>
<li><a href="https://dockhero.io/">Dockhero</a> - Dockhero is a Heroku add-on which turns a Docker image into a microservice attached to the Heroku app. Currently in beta.</li>
<li><a href="https://giantswarm.io/">Giant Swarm</a> - Simple microservice infrastructure. Deploy your containers in seconds.</li>
<li><a href="https://cloud.google.com/kubernetes-engine/docs/">Google Container Engine</a> - Docker containers on Google Cloud Computing powered by <a href="https://kubernetes.io">Kubernetes</a>.</li>
<li><a href="https://hyper.sh/">Hyper_</a> - Secure container hosting service with &quot;nano-containers&quot; and per-second billing.</li>
<li><a href="https://console.bluemix.net/docs/containers/container_index.html">IBM Bluemix Container Service</a> - Run Docker containers in a hosted cloud environment on IBM Bluemix.</li>
<li><a href="https://jelastic.cloud/">Jelastic Cloud</a> - &quot;Easy-to-use&quot; container hosting platfrom with automatic vertical and horizontal scaling. Available over 50+ hosting providers worldwide.</li>
<li><a href="https://www.openshift.com/dedicated/index.html">OpenShift Dedicated</a> - A hosted <a href="https://www.openshift.org/">OpenShift</a> cluster for running your Docker containers managed by Red Hat.</li>
<li><a href="https://sloppy.io/">Sloppy.io</a> - all-in-one solution for container deployment and hosting &#x2013; made and hosted in Germany</li>
<li><a href="https://www.joyent.com/">Triton</a> - Elastic container-native infrastructure by Joyent.</li>
</ul>
<h3 id="monitoring-services">Monitoring Services</h3>
<ul>
<li><a href="https://www.appdynamics.com/community/exchange/extension/docker-monitoring-extension/">AppDynamics</a> - AppDynamics gives enterprises real-time insights into application performance, user performance, and business performance so they can move faster in an increasingly sophisticated, software-driven world.</li>
<li><a href="http://axibase.com/products/axibase-time-series-database/writing-data/docker-cadvisor/">Axibase Time-Series Database</a> - Long-term retention of container statistics and built-in dashboards for Docker. Collected with native Google cAdvisor storage driver.</li>
<li><a href="https://www.ca.com/us/products/docker-monitoring.html">CA Technologies Docker Monitoring</a> - Agile Operations solutions from CA deliver the modern Docker monitoring businesses need to accelerate and optimize the performance of microservices and the dynamic Docker environments running them. Monitor both the Docker environment and apps that run inside them.</li>
<li><a href="https://www.splunk.com/blog/2015/08/24/collecting-docker-logs-and-stats-with-splunk.html">Collecting docker logs and stats with Splunk</a></li>
<li><a href="https://www.coscale.com/docker-monitoring">CoScale</a> - Full stack monitoring for containerized applications and microservices. Powered by anomaly detection to find performance problems faster.</li>
<li><a href="https://www.datadoghq.com/">Datadog</a> - Datadog is a full-stack monitoring service for large-scale cloud environments that aggregates metrics/events from servers, databases, and applications. It includes support for Docker, Kubernetes, and Mesos.</li>
<li><a href="https://meros.io">Meros</a> - Analyzes containers resources, captures logs, remote web SSH terminal and powerful DevOps alerts.</li>
<li><a href="https://prometheus.io/">Prometheus</a> - Open-source service monitoring system and time series database</li>
<li><a href="https://www.site24x7.com/docker-monitoring.html">Site24x7</a> - Docker Monitoring for DevOps and IT is a SaaS Pay per Host model</li>
<li><a href="https://github.com/sematext/sematext-agent-docker">SPM for Docker</a> - Monitoring of host and container metrics, Docker events and logs. Automatic log parser. Anomaly Detection and alerting for metrics and logs. <a href="https://twitter.com/sematext">@sematext</a></li>
<li><a href="https://sysdig.com/product/monitor/">Sysdig Monitor</a> - Sysdig Monitor can be used as either software or a SaaS service to monitor, alert, and troubleshoot containers using system calls. It has container-specific features for Docker and Kubernetes.</li>
</ul>
<h1 id="useful-resources">Useful Resources</h1>
<ul>
<li><strong><a href="http://www.nkode.io/2014/08/24/valuable-docker-links.html">Valuable Docker Links</a>__ High quality articles about docker! __MUST SEE</strong></li>
<li><a href="https://github.com/cncf/landscape">Cloud Native Landscape</a></li>
<li><a href="https://blog.docker.com/docker-weekly-archives/">Docker Weekly</a> Huge resource</li>
</ul>
<p>Blogs by</p>
<ul>
<li><a href="https://blog.codeship.com/">@codeship</a></li>
<li><a href="http://crosbymichael.com/">@crosbymichael</a></li>
<li><a href="https://gliderlabs.com/devlog/">@gliderlabs</a></li>
<li><a href="https://blog.jessfraz.com/">@jessfraz</a></li>
<li><a href="http://jpetazzo.github.io/">@jpetazzo</a></li>
<li><a href="http://jasonwilder.com/">@jwilder</a></li>
<li><a href="https://nickjanetakis.com/blog/tag/docker-tips-tricks-and-tutorials">@nickjanetakis</a></li>
<li><a href="http://progrium.com/blog/">@progrium</a></li>
<li><a href="http://sebgoa.blogspot.be/">@sebgoa</a></li>
<li><a href="http://container-solutions.com/blog/">Container solutions</a></li>
<li><a href="https://container42.com/">Container42</a></li>
</ul>
<h2 id="awesome-lists">Awesome Lists</h2>
<ul>
<li><a href="https://github.com/ciandcd/awesome-ciandcd">Awesome CI/CD</a> - Not specific to docker but relevant.</li>
<li><a href="https://github.com/ramitsurana/awesome-kubernetes">Awesome Kubernetes</a> by <a href="https://github.com/ramitsurana">@ramitsurana</a></li>
<li><a href="https://github.com/Friz-zy/awesome-linux-containers">Awesome Linux Container</a> more general about container than this repo, by <a href="https://github.com/Friz-zy">@Friz-zy</a>.</li>
<li><a href="https://github.com/Kickball/awesome-selfhosted">Awesome Selfhosted</a> list of Free Software network services and web applications which can be hosted locally by running in a classical way (setup local web server and run applications from there) or in a Docker container. By <a href="https://github.com/Kickball">@Kickball</a></li>
<li><a href="https://github.com/n1trux/awesome-sysadmin">Awesome Sysadmin</a> by <a href="https://github.com/n1trux">@n1trux</a></li>
<li><a href="https://github.com/cjbarber/ToolsOfTheTrade">ToolsOfTheTrade</a> a list of SaaS and On premise applications by <a href="https://github.com/cjbarber">@cjbarber</a></li>
</ul>
<h2 id="good-tips">Good Tips</h2>
<ul>
<li><a href="http://brunorocha.org/python/dealing-with-linked-containers-dependency-in-docker-compose.html">Dealing with linked containers dependency in docker-compose</a> by <a href="https://github.com/rochacbruno">@rochacbruno</a></li>
<li><a href="http://docker-saigon.github.io/post/Docker-Caveats/">Docker Caveats</a> What You Should Know About Running Docker In Production (written 11 APRIL 2016) <strong>MUST SEE</strong></li>
<li><a href="https://blog.jessfraz.com/post/docker-containers-on-the-desktop/">Docker Containers on the Desktop</a> - The <strong>funniest way</strong> to learn about docker by <a href="https://github.com/jessfraz">@jessfraz</a> who also gave a <a href="https://www.youtube.com/watch?v=1qlLUf7KtAw">presentation</a> about it @ DockerCon 2015</li>
<li><a href="https://www.rightscale.com/blog/cloud-management-best-practices/docker-vs-vms-combining-both-cloud-portability-nirvana">Docker vs. VMs? Combining Both for Cloud Portability Nirvana</a></li>
<li><a href="https://medium.com/@kinghuang/docker-compose-anchors-aliases-extensions-a1e4105d70bd">Don&apos;t Repeat Yourself with Anchors, Aliases and Extensions in Docker Compose Files</a> by <a href="https://github.com/kinghuang">@King Chung Huang</a></li>
<li><a href="http://fabiorehm.com/blog/2014/09/11/running-gui-apps-with-docker/">GUI Apps with Docker</a> by <a href="https://github.com/fgrehm">@fgrehm</a></li>
</ul>
<h2 id="raspberry-pi--arm">Raspberry Pi &amp; ARM</h2>
<ul>
<li><a href="http://blog.hypriot.com/">Docker Pirates ARMed with explosive stuff</a> Huge resource on clustering, swarm, docker, pre-installed image for SD card on Raspberry Pi</li>
<li><a href="https://github.com/umiddelb/armhf/wiki/Get-Docker-up-and-running-on-the-RaspberryPi-%28ARMv6%29-in-three-steps">Get Docker up and running on the RaspberryPi in three steps</a></li>
<li><a href="https://resin.io/">git push docker containers to linux devices</a> Modern DevOps for IoT, leveraging git and Docker.</li>
<li><a href="https://github.com/umiddelb/armhf/wiki/Installing,-running,-using-docker-on-armhf-(ARMv7)-devices">Installing, running, using Docker on armhf (ARMv7) devices</a></li>
</ul>
<h2 id="security-1">Security</h2>
<ul>
<li><a href="https://opensource.com/business/14/9/security-for-docker">Bringing new security features to Docker</a></li>
<li><a href="https://github.com/tomwillfixit/alpine-cvecheck">CVE Scanning Alpine images with Multi-stage builds in Docker 17.05</a> by <a href="https://twitter.com/tomwillfixit">@tomwillfixit</a></li>
<li><a href="http://www.projectatomic.io/docs/docker-and-selinux/">Docker and SELinux</a></li>
<li><a href="https://github.com/GDSSecurity/Docker-Secure-Deployment-Guidelines">Docker Secure Deployment Guidelines</a></li>
<li><a href="https://binarymist.io/publication/docker-security/">Docker Securitiy - Quick Reference</a></li>
<li><a href="https://github.com/konstruktoid/Docker/blob/master/Security/CheatSheet.adoc">Docker Security Cheat Sheet</a></li>
<li><a href="https://fr.slideshare.net/MichaelBoelen/docker-security-are-your-containers-tightly-secured-to-the-ship">Docker Security: Are Your Containers Tightly Secured to the Ship? SlideShare</a></li>
<li><a href="https://github.com/docker-library/official-images/issues/1448">How CVE&apos;s are handled on Offical Docker Images</a></li>
<li><a href="https://www.blockbridge.com/improving-docker-security-with-authenticated-volumes/">Improving Docker Security with Authenticated Volumes</a></li>
<li><a href="https://cisofy.com/lynis/">Lynis is an open source security auditing tool including Docker auditing</a></li>
<li><a href="https://linux-audit.com/tag/docker/">Security Best Practices for Building Docker Images</a></li>
<li><a href="http://www.se-radio.net/2017/05/se-radio-episode-290-diogo-monica-on-docker-security/">Software Engineering Radio interview of Docker Security Team Lead (Diogo M&#xF3;nica)</a></li>
<li><a href="https://opensource.com/business/15/3/docker-security-tuning">Tuning Docker with the newest security enhancements</a></li>
<li><a href="https://blog.docker.com/2015/05/understanding-docker-security-and-best-practices/">Understanding Docker security and best practices</a> (written 5 MAY 2015)</li>
</ul>
<h2 id="videos">Videos</h2>
<ul>
<li><a href="https://www.youtube.com/watch?v=1jwo8-1HYYg">Contributing to Docker by Andrew &quot;Tianon&quot; Page (InfoSiftr)</a> (34:31)</li>
<li><a href="https://www.youtube.com/watch?v=GpHMTR7P2Ms">Deploying and scaling applications with Docker, Swarm, and a tiny bit of Python magic</a> (3:11:06) by <a href="https://github.com/jpetazzo">@jpetazzo</a></li>
<li><a href="https://www.youtube.com/watch?v=zWGFqMuEHdw">Docker and SELinux by Daniel Walsh from Red Hat</a> (40:23)</li>
<li><a href="https://www.youtube.com/watch?v=FdkNAjjO5yQ">Docker for Developers</a> (54:26) by <a href="https://github.com/jpetazzo">@jpetazzo</a> &lt;== Good introduction, context, demo</li>
<li><a href="https://www.youtube.com/watch?v=Glk5d5WP6MI">Docker in Production</a> by <a href="https://github.com/jpetazzo">@jpetazzo</a> (36:05)</li>
<li><a href="https://www.youtube.com/watch?v=CAewZCBT4PI">Docker: How to Use Your Own Private Registry</a> (15:01)</li>
<li><a href="https://vimeo.com/110835013">Extending Docker with Plugins</a> (15:21)</li>
<li><a href="https://www.youtube.com/watch?v=7CZFpHUPqXw">From Local Docker Development to Production Deployments</a> by <a href="https://github.com/jpetazzo">@jpetazzo</a> @ AWS re:Invent 2015</li>
<li><a href="https://www.youtube.com/watch?v=GaHzdqFithc">Immutable Infrastructure with Docker and EC2 by Michael Bryzek (Gilt)</a> (42:04)</li>
<li><a href="https://www.youtube.com/watch?v=ZVaRK10HBjo">Introduction to Docker and containers</a> (3:09:00) by <a href="https://github.com/jpetazzo">@jpetazzo</a></li>
<li><a href="https://vimeo.com/123341629">Logging on Docker: What You Need to Know</a> (51:27)</li>
<li><a href="https://www.youtube.com/watch?v=6f2E6PKYb0w">Performance Analysis of Docker - Jeremy Eder</a> (1:36:58)</li>
<li><a href="https://www.udacity.com/course/scalable-microservices-with-kubernetes--ud615">Scalable Microservices with Kubernetes</a> Free Udacity course</li>
<li><a href="https://www.youtube.com/watch?v=IiITP3yIRd8">State of containers: a debate with CoreOS, VMware and Google</a> (27:38)</li>
<li><a href="https://sysadmincasts.com/episodes/31-introduction-to-docker">SysAdminCasts: Introduction to Docker</a> (15:49)</li>
</ul>
<h1 id="communities-and-meetups">Communities and Meetups</h1>
<h2 id="brazilian">Brazilian</h2>
<ul>
<li><a href="http://docker-br.herokuapp.com">Docker BR on Slack</a> - Auto invite url</li>
<li><a href="https://telegram.me/dockerbr">Docker BR on Telegram</a></li>
</ul>
<h2 id="chinese">Chinese</h2>
<ul>
<li><a href="http://dockone.io/">DockerOne</a> Docker Community (in Chinese) by <a href="http://dockone.io/people/%E6%9D%8E%E9%A2%96%E6%9D%B0">@LiYingJie</a></li>
</ul>
<h2 id="english">English</h2>
<ul>
<li><a href="https://www.docker.com/docker-community">Docker Community</a></li>
<li><a href="https://events.docker.com">Docker Events</a></li>
<li><a href="https://www.meetup.com/Docker-Online-Meetup/">Docker On Line Meetup</a></li>
<li><a href="https://www.reddit.com/r/docker/">Docker Reddit Community</a></li>
</ul>
<h2 id="russian">Russian</h2>
<ul>
<li><a href="https://t.me/docker_ru">Docker Russian-speaking Community</a></li>
</ul></section>
<!--<script src="index.js"></script> -->
<!--Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body></html>

255
website/index.tmpl Normal file
View File

@ -0,0 +1,255 @@
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Cache-control" content="public">
<meta charset="UTF-8">
<title>Awesome-docker</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#157878">
<meta name="description" content="A curated list of Docker resources and projects.">
<meta name="keywords" content="awesome awesome-list container docker dockerfile tools open source projects">
<link rel="icon" type="image/png" href="favicon.png">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css">
<!-- <link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="critical.css"> -->
<style>
html {
font-family: sans-serif;
}
section {
display: block;
}
a {
background-color: transparent;
}
strong {
font-weight: 700;
}
h1 {
font-size: 2em;
margin: 0.67em 0px;
}
img {
border: 0px;
}
svg:not(:root) {
overflow: hidden;
}
* {
box-sizing: border-box;
}
body {
padding: 0px;
margin: 0px;
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 1.5;
color: rgb(96, 108, 113);
}
a {
color: rgb(30, 107, 184);
text-decoration: none;
}
.btn {
display: inline-block;
margin-bottom: 1rem;
color: rgba(255, 255, 255, 0.701961);
background-color: rgba(255, 255, 255, 0.0784314);
border: 1px solid rgba(255, 255, 255, 0.2);
border-top-left-radius: 0.3rem;
border-top-right-radius: 0.3rem;
border-bottom-right-radius: 0.3rem;
border-bottom-left-radius: 0.3rem;
transition: color 0.2s, background-color 0.2s, border-color 0.2s;
-webkit-transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
@media screen and (min-width: 64em) {
.btn {
padding: 0.75rem 1rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.btn {
padding: 0.6rem 0.9rem;
font-size: 0.9rem;
}
}
@media screen and (max-width: 42em) {
.btn {
display: block;
width: 100%;
padding: 0.75rem;
font-size: 0.9rem;
}
}
.page-header {
color: rgb(255, 255, 255);
text-align: center;
background-color: rgb(21, 153, 87);
background-image: linear-gradient(120deg, rgb(21, 87, 153), rgb(21, 153, 87));
}
@media screen and (min-width: 64em) {
.page-header {
padding: 5rem 6rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.page-header {
padding: 3rem 4rem;
}
}
@media screen and (max-width: 42em) {
.page-header {
padding: 2rem 1rem;
}
}
.project-name {
margin-top: 0px;
margin-bottom: 0.1rem;
}
@media screen and (min-width: 64em) {
.project-name {
font-size: 3.25rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.project-name {
font-size: 2.25rem;
}
}
@media screen and (max-width: 42em) {
.project-name {
font-size: 1.75rem;
}
}
.project-tagline {
margin-bottom: 2rem;
font-weight: 400;
opacity: 0.7;
}
@media screen and (min-width: 64em) {
.project-tagline {
font-size: 1.25rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.project-tagline {
font-size: 1.15rem;
}
}
@media screen and (max-width: 42em) {
.project-tagline {
font-size: 1rem;
}
}
.main-content {
word-wrap: break-word;
}
.main-content :first-child {
margin-top: 0px;
}
@media screen and (min-width: 64em) {
.main-content {
max-width: 64rem;
padding: 2rem 6rem;
margin: 0px auto;
font-size: 1.1rem;
}
}
@media screen and (max-width: 64em) and (min-width: 42em) {
.main-content {
padding: 2rem 4rem;
font-size: 1.1rem;
}
}
@media screen and (max-width: 42em) {
.main-content {
padding: 2rem 1rem;
font-size: 1rem;
}
}
.main-content img {
max-width: 100%;
}
.main-content h1,
.main-content h4 {
margin-top: 2rem;
margin-bottom: 1rem;
font-weight: 400;
color: rgb(21, 153, 87);
}
.main-content p {
margin-bottom: 1em;
}
.main-content blockquote {
padding: 0px 1rem;
margin-left: 0px;
color: rgb(129, 145, 152);
border-left-width: 0.3rem;
border-left-style: solid;
border-left-color: rgb(220, 230, 240);
}
.main-content blockquote> :first-child {
margin-top: 0px;
}
.main-content blockquote> :last-child {
margin-bottom: 0px;
}
</style>
</head>
<body>
<section class="page-header">
<h1 class="project-name">Awesome-docker</h1>
<h2 class="project-tagline">A curated list of Docker resources and projects</h2>
<a href="https://github.com/veggiemonk/awesome-docker" class="btn">View on GitHub</a>
<br>
<!-- Place this tag where you want the button to render. -->
<a class="github-button" href="https://github.com/veggiemonk/awesome-docker" data-icon="octicon-star" data-size="large" data-count-href="/veggiemonk/awesome-docker/stargazers"
data-show-count="true" data-count-aria-label="# stargazers on GitHub" aria-label="Star veggiemonk/awesome-docker on GitHub">Star</a>
</section>
<section id="md" class="main-content"></section>
<!--<script src="index.js"></script> -->
<!--Place this tag in your head or just before your close body tag. -->
<script async defer src="https://buttons.github.io/buttons.js"></script>
</body>
</html>

View File