-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from remkohdev/master
mdlint fixes, add github link to credits, moved multilanguage support and pdf
- Loading branch information
Showing
25 changed files
with
857 additions
and
785 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pdfs/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
{ | ||
"line-length": false | ||
"comment": "MD013: Line length too large", | ||
"line-length": false | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
languages/ja/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
matrix: | ||
include: | ||
- language: node_js | ||
node_js: 10 | ||
script: | ||
- npm install markdownlint-cli | ||
- markdownlint --config .markdownlint.json --ignore workshop/SUMMARY.md --ignore workshop/README.md workshop | ||
include: | ||
- language: node_js | ||
node_js: 10 | ||
script: | ||
- npm install markdownlint-cli | ||
- markdownlint --config .markdownlint.json --ignore workshop/SUMMARY.md --ignore workshop/README.md workshop |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Languages | ||
|
||
* [English](en) | ||
* [日本語 (にほんご)](ja) | ||
|
||
<!-- | ||
* [Português](pt-br) | ||
* [Italiano](it) | ||
* [العربية](ar) | ||
* [azərbaycan dili](az) | ||
* [беларуская мова](be) | ||
* [català](ca) | ||
* [čeština, český jazyk](cs) | ||
* [Esperanto](eo) | ||
* [suomi](fi) | ||
* [हिन्दी, हिंदी](hi) | ||
* [Magyar](hu) | ||
* [Bahasa Indonesia](id) | ||
* [日本語 (にほんご)](ja) | ||
* [한국어, 조선어](ko) | ||
* [македонски јазик](mk) | ||
* [Nederlands](nl) | ||
* [język polski](pl) | ||
* [limba română](ro) | ||
* [русский язык](ru) | ||
* [српски језик](sr) | ||
* [ไทย](th) | ||
* [Türkçe](tr) | ||
* [Tiếng Việt](vi) | ||
* [漢語](zh-tw) | ||
* [中文](zh) | ||
--> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Docker ハンズオン | ||
|
||
Docker を使用して以下のことを学びます。 | ||
|
||
- Docker コマンドの基本操作 | ||
- Docker Hub と公式イメージの利用 | ||
- DockerFile を使用した Docker Image の作成、Docker Hub への push | ||
- ユニオン・ファイル・システムとコピー・オン・ライト | ||
- Docker swarm を利用したコンテナのデプロイ、オーケストレーション | ||
|
||
## ハンズオン構成 | ||
|
||
Lab0-3の4つのハンズオンを準備しています。 | ||
|
||
Lab1-3 は基本的には独立した内容となっていますが、基本的には Lab1 から実施頂くことをオススメします。 | ||
|
||
## Agenda | ||
|
||
| | | | ||
| - | - | | ||
| [Lab0](lab-0/README.md) | Docker をインストールする | | ||
| [Lab1](lab-1/README.md) | 初めてのコンテナを実行する | | ||
| [Lab2](lab-2/README.md) | カスタム Docker イメージを使用して付加価値を与える | | ||
| [Lab3](lab-3/README.md) | オーケストレーション入門 | | ||
|
||
- Docker をインストールする | ||
- 初めてのコンテナを実行する | ||
- Docker コマンドの基本操作 | ||
- Docker Hub と公式イメージの利用 | ||
- カスタム Docker イメージを使用して付加価値を与える | ||
- DockerFileを使用したDocker Imageの作成、Docker Hubへのpush | ||
- ユニオン・ファイル・システムとコピー・オン・ライト | ||
- オーケストレーション入門 | ||
- Docker swarm を利用したコンテナのデプロイ、オーケストレーション。は Kubernetes でも同様なことができるため、Kubernetes のハンズオンを別途実施予定の場合は、スキップ可能です。 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Summary | ||
|
||
<!-- Rules of SUMMARY.md are here: https://docs.gitbook.com/integrations/github/content-configuration#summary --> | ||
<!-- All headings MUST be THREE hashmarks (###) --> | ||
<!-- Indented bullets (4 spaces) will make the first line be a section --> | ||
|
||
### Getting Started | ||
|
||
* [Pre-work](lab-0/README.md) | ||
|
||
### Docker 101 | ||
|
||
* [Lab 1](lab-1/README.md) | ||
* [Lab 2](lab-2/README.md) | ||
* [Lab 3](lab-3/README.md) | ||
|
||
### Resources | ||
|
||
* [IBM Developer](https://developer.ibm.com) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.