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
Docker for development
Search
Cheesecake Labs
March 06, 2018
Programming
0
42
Docker for development
Cheesecake Labs
March 06, 2018
Tweet
Share
More Decks by Cheesecake Labs
See All by Cheesecake Labs
Cats' wellness & care
cheesecakelabs
0
49
How do we create the first impressions?
cheesecakelabs
0
55
Menstrual cup: suit and freedom
cheesecakelabs
0
66
Life is a cycle, better with a bicycle
cheesecakelabs
0
51
Interview Process: how to get the best of people
cheesecakelabs
1
84
My capsule wardrobe experience
cheesecakelabs
3
60
Stonewall Rebellion and its impact on LGBTQIA+ history
cheesecakelabs
1
40
Pregnancy, childbirth and breastfeeding: What do I have to do with it?
cheesecakelabs
0
48
MBTI - Psychological types described by Jung
cheesecakelabs
0
130
Other Decks in Programming
See All in Programming
コード生成なしでモック処理を実現!ovechkin-dm/mockioで学ぶメタプログラミング
qualiarts
0
260
20251016_Rails News ~Rails 8.1の足音を聴く~
morimorihoge
3
700
Cursorハンズオン実践!
eltociear
2
1.2k
Webサーバーサイド言語としてのRustについて
kouyuume
1
4.5k
CSC509 Lecture 07
javiergs
PRO
0
240
The Past, Present, and Future of Enterprise Java
ivargrimstad
0
200
monorepo の Go テストをはやくした〜い!~最小の依存解決への道のり~ / faster-testing-of-monorepos
convto
2
530
CSC305 Lecture 10
javiergs
PRO
0
230
SwiftDataを使って10万件のデータを読み書きする
akidon0000
0
240
Devvox Belgium - Agentic AI Patterns
kdubois
1
140
その面倒な作業、「Dart」にやらせませんか? Flutter開発者のための業務効率化
yordgenome03
1
140
O Que É e Como Funciona o PHP-FPM?
marcelgsantos
0
190
Featured
See All Featured
The Art of Delivering Value - GDevCon NA Keynote
reverentgeek
16
1.7k
Visualizing Your Data: Incorporating Mongo into Loggly Infrastructure
mongodb
48
9.7k
Facilitating Awesome Meetings
lara
57
6.6k
The Cult of Friendly URLs
andyhume
79
6.6k
Embracing the Ebb and Flow
colly
88
4.9k
Statistics for Hackers
jakevdp
799
220k
The World Runs on Bad Software
bkeepers
PRO
72
11k
Automating Front-end Workflow
addyosmani
1371
200k
YesSQL, Process and Tooling at Scale
rocio
173
15k
The Myth of the Modular Monolith - Day 2 Keynote - Rails World 2024
eileencodes
26
3.1k
The Language of Interfaces
destraynor
162
25k
How to train your dragon (web standard)
notwaldorf
97
6.3k
Transcript
Docker for development Adson Leal
Agenda • What is docker? ◦ Images ◦ Containers •
Why use it for development? • Show me the code!
What is docker? - Docker is an open platform for
developers and sysadmins to build, ship, and run distributed applications, whether on laptops, data center VMs, or the cloud.
Image - Image is the application that we want to
run - All the binaries and files are stored here
Container - Is a running instance of a image -
We can have multiple containers of the same image
Why use it for development? - Consistent development environments for
your entire team. - The development environment is the exact same as the production environment - You only need Docker to develop - Easy to use multiple languages versions - You can still use the same tools that you use
Show me the code!
Thank you!