First step towards section refactoring

This commit is contained in:
Julien Bisconti 2017-08-13 16:01:41 +03:00
parent ec3e3dc45e
commit 88bbbc79ea
2 changed files with 61 additions and 43 deletions

View File

@ -21,51 +21,69 @@ All the links are monitored and tested with [awesome_bot](https://github.com/dkh
# Contents # Contents
- [What is Docker?](#what-is-docker) - Introduction
- [Where to start?](#where-to-start) - [What is Docker?](#what-is-docker)
- [Where to start? (Windows)](#where-to-start-windows) - [Where to start?](#where-to-start)
- [Tools](#tools) - [Where to start? (Windows)](#where-to-start-windows)
- [Continuous Integration / Continuous Delivery](#continuous-integration--continuous-delivery) - [Projects](#tools)
- [CI Services](#ci-services) - Container Operations
- [Deployment and Infrastructure](#deployment-and-infrastructure) - Container Composition
- [Developer Tools](#developer-tools) - [Deployment and Infrastructure](#deployment-and-infrastructure)
- [Development Environments](#development-environments) - [Monitoring](#monitoring--logging)
- [Dockerfile](#dockerfile) - [Networking](#networking)
- [Garbage Collection](#garbage-collection) - [Orchestration](#remote-container-manager--orchestration)
- [Hosting Images (registries)](#hosting-images-registries) - [PaaS](#paas)
- [Image Builder](#image-builder) - [Reverse Proxy](#reverse-proxy)
- [Linter / Validator](#linter--validator) - [Security](#security)
- [Local Container Manager](#local-container-manager) - [Service Discovery](#service-discovery)
- [Monitoring & Logging](#monitoring--logging) - [Volume management / Data](#volume-management-and-plugins)
- [Monitoring & Logging Services](#monitoring--logging-services) - User Interface
- [Networking](#networking) - [Terminal](#terminal-user-interface)
- [PaaS](#paas) - Native
- [Remote Container Manager / Orchestration](#remote-container-manager--orchestration) - [Web](#web-interface)
- [Reverse Proxy](#reverse-proxy) - Docker Images
- [Security](#security) - [Builder](#image-builder)
- [Serverless](#serverless) - [Dockerfile](#dockerfile)
- [Service Discovery](#service-discovery) - [Linter](#linter--validator)
- [CaaS - Services for running containers](#services-for-running-containers) - Inside Container Tools
- [Terminal User Interface](#terminal-user-interface) - [Registry](#hosting-images-registries)
- [Testing](#testing) - Development with Docker
- [Utilities](#utilities) - [API Client](#developer-tools)
- [Volume management and plugins](#volume-management-and-plugins) - [CI/CD](#continuous-integration--continuous-delivery)
- [Web Interface](#web-interface) - [Development Environment](#development-environments)
- [Garbage Collection](#garbage-collection)
- [Serverless](#serverless)
- [Testing](#testing)
- [Wrappers](#local-container-manager)
- [Utilities](#utilities) <- must be split
- Legacy tools
- Services based on Docker ($$$)
- [CI/CD](#ci-services)
- [CaaS - Services for running containers](#services-for-running-containers)
- [Monitoring](#monitoring--logging-services)
- Registries
- PaaS
- [Useful Resources](#useful-resources) - [Useful Resources](#useful-resources)
- Awesome Lists
- [Communities and Meetups](#communities-and-meetups)
- [Brazilian](#brazilian)
- [Chinese](#chinese)
- [English](#english)
- [Russian](#russian)
- [Good Tips](#good-tips) - [Good Tips](#good-tips)
- [Raspberry Pi / ARM](#raspberry-pi--arm)
- [Newsletter](#newsletter) - [Newsletter](#newsletter)
- [Security](#security-1) - [Security](#security-1)
- [Raspberry Pi / ARM](#raspberry-pi--arm) - [Videos](#videos)
- [Videos](#videos) - [Main Account](#main-account)
- [Main Account](#main-account) - [Useful videos](#useful-videos)
- [Useful videos](#useful-videos) - ~~[Interesting Twitter Accounts](#interesting-twitter-accounts)~~
- [Interesting Twitter Accounts](#interesting-twitter-accounts)
- [Communities and Meetups](#communities-and-meetups)
- [Brazilian](#brazilian)
- [Chinese](#chinese)
- [English](#english)
- [Russian](#russian)
# Legend
- Commercial 🤑
- Beta 🤕
- Terminal 🤓
- Web Based 😎
# What is Docker? # What is Docker?

View File

@ -14,9 +14,9 @@
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet" type="text/css"> <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="style.css">-->
<link rel="stylesheet" href="/awesome-docker/style.min.css"> <link rel="stylesheet" href="/awesome-docker/style.min.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.1/fetch.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.7.2/showdown.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/showdown/1.5.5/showdown.min.js"></script>
<script> <script>
const md = document.getElementById('md');
const converter = new showdown.Converter(); const converter = new showdown.Converter();
converter.setFlavor('github'); converter.setFlavor('github');
converter.setOption('ghCompatibleHeaderId', true); converter.setOption('ghCompatibleHeaderId', true);
@ -26,7 +26,7 @@
.then(res => res.text()) .then(res => res.text())
.catch(err => console.error(err)) .catch(err => console.error(err))
.then(text => { .then(text => {
document.getElementById('md').innerHTML = converter.makeHtml(text); md.innerHTML = converter.makeHtml(text);
}); });
</script> </script>
</head> </head>