Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Features
Speaker Deck
PRO
Sign in
Sign up for free
Search
Search
De Zero a Docker em 30min
Search
Enderson Tadeu S. Maia
November 26, 2014
Technology
1
840
De Zero a Docker em 30min
Uma um introdução do Docker no Maceió Dev Meetup.
Enderson Tadeu S. Maia
November 26, 2014
Tweet
Share
More Decks by Enderson Tadeu S. Maia
See All by Enderson Tadeu S. Maia
Minimalist Operating Systems for Containers
endersonmaia
0
110
RESTful APIs
endersonmaia
5
1.3k
Other Decks in Technology
See All in Technology
AI時代のデータセンターネットワーク
lycorptech_jp
PRO
1
290
フロントエンド設計にモブ設計を導入してみた / 20241212_cloudsign_TechFrontMeetup
bengo4com
0
1.9k
オプトインカメラ:UWB測位を応用したオプトイン型のカメラ計測
matthewlujp
0
180
AWS re:Invent 2024で発表された コードを書く開発者向け機能について
maruto
0
200
Oracle Cloud Infrastructure:2024年12月度サービス・アップデート
oracle4engineer
PRO
0
210
PHPerのための計算量入門/Complexity101 for PHPer
hanhan1978
5
200
DevOps視点でAWS re:invent2024の新サービス・アプデを振り返ってみた
oshanqq
0
180
KnowledgeBaseDocuments APIでベクトルインデックス管理を自動化する
iidaxs
1
270
大幅アップデートされたRagas v0.2をキャッチアップ
os1ma
2
540
サービスでLLMを採用したばっかりに振り回され続けたこの一年のあれやこれや
segavvy
2
490
20241214_WACATE2024冬_テスト設計技法をチョット俯瞰してみよう
kzsuzuki
3
540
マイクロサービスにおける容易なトランザクション管理に向けて
scalar
0
140
Featured
See All Featured
Why Our Code Smells
bkeepers
PRO
335
57k
Optimizing for Happiness
mojombo
376
70k
GitHub's CSS Performance
jonrohan
1030
460k
The Art of Programming - Codeland 2020
erikaheidi
53
13k
Bootstrapping a Software Product
garrettdimon
PRO
305
110k
Dealing with People You Can't Stand - Big Design 2015
cassininazir
365
25k
Keith and Marios Guide to Fast Websites
keithpitt
410
22k
Improving Core Web Vitals using Speculation Rules API
sergeychernyshev
0
98
Mobile First: as difficult as doing things right
swwweet
222
9k
ピンチをチャンスに:未来をつくるプロダクトロードマップ #pmconf2020
aki_iinuma
111
49k
The World Runs on Bad Software
bkeepers
PRO
65
11k
The Success of Rails: Ensuring Growth for the Next 100 Years
eileencodes
44
6.9k
Transcript
Texto Introdução ao Docker De Zero a Docker em 30
minutos
História
História 2013 github.com/shykes
Setembro de 2013 https://blog.docker.com/2013/09/red-hat-and-docker- collaborate/ História
História ou Notícia ? Microsoft e AWS http://news.microsoft.com/2014/10/15/dockerpr/ http://aws.amazon.com/pt/ecs/
OS Level Virtualization
Conceito Virtualização a nível de sistema operacional
LinuX Containers - LXC
Containers vs. VMs
Estrutura
Volumes and Layers AUFS btrfs
Docker CLI docker ps docker images docker pull/push docker run/stop
Motivação Entrega mais rápida Deploy and scale Maior densidade
Desenvolvedor Isolamento de ambientes Proximidade com ambiente de produção Simples
e rápido de repetir
Sysadmin Orchestration Isolation Service/App Profiles
./Dockerfile
./Dockerfile FROM RUN ADD/COPY VOLUMES EXPOSE CMD …
Na prática …