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
Day 2 - Docker
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
offz
April 20, 2017
Programming
0
45
Day 2 - Docker
offz
April 20, 2017
Tweet
Share
More Decks by offz
See All by offz
TM-P2-IT-security
offfffz
0
24
Docker Compose for Rails Developer
offfffz
1
37
Day 2 - CI
offfffz
0
57
Day 1 - Git
offfffz
0
90
Day 1 - Testing
offfffz
0
49
Other Decks in Programming
See All in Programming
AIに任せる範囲を安全に広げるためにやっていること
fukucheee
0
130
AI主導でFastAPIのWebサービスを作るときに 人間が構造化すべき境界線
okajun35
0
670
株式会社 Sun terras カンパニーデック
sunterras
0
2k
AHC061解説
shun_pi
0
350
Geminiの機能を調べ尽くしてみた
naruyoshimi
0
200
猫の手も借りたい!ので AIエージェント猫を作って社内に放した話 Claude Code × Container Lambda の Slack Bot "DevNeko"
naramomi7
0
260
Codexに役割を持たせる 他のAIエージェントと組み合わせる実務Tips
o8n
3
1.2k
2026年は Rust 置き換えが流行る! / 20260220-niigata-5min-tech
girigiribauer
0
230
encoding/json/v2のUnmarshalはこう変わった:内部実装で見る設計改善
kurakura0916
0
390
コーディングルールの鮮度を保ちたい / keep-fresh-go-internal-conventions
handlename
0
180
Codex の「自走力」を高める
yorifuji
0
1.1k
エラーログのマスキングの仕組みづくりに役立ったASTの話
kumoichi
0
160
Featured
See All Featured
RailsConf & Balkan Ruby 2019: The Past, Present, and Future of Rails at GitHub
eileencodes
141
35k
10 Git Anti Patterns You Should be Aware of
lemiorhan
PRO
659
61k
Mind Mapping
helmedeiros
PRO
1
110
Darren the Foodie - Storyboard
khoart
PRO
3
2.8k
Performance Is Good for Brains [We Love Speed 2024]
tammyeverts
12
1.5k
Building a A Zero-Code AI SEO Workflow
portentint
PRO
0
380
Ethics towards AI in product and experience design
skipperchong
2
220
Cheating the UX When There Is Nothing More to Optimize - PixelPioneers
stephaniewalter
287
14k
Art, The Web, and Tiny UX
lynnandtonic
304
21k
RailsConf 2023
tenderlove
30
1.4k
Why Mistakes Are the Best Teachers: Turning Failure into a Pathway for Growth
auna
0
77
AI Search: Where Are We & What Can We Do About It?
aleyda
0
7.1k
Transcript
Docker
Docker vs. VM
Commands - pull - push - run - exec -
start - stop - kill - ps - images - rm - rmi
Cheat Sheet http://deeeet.com/writing/2013/12/08/docker- cheat-with-exmaple/
walkthrough 01 1. docker run hello-world 2. docker run alpine
echo 'Hello World' 3. docker run alpine ps aux 4. docker run alpine pwd
walkthrough 02 1. docker ps 2. docker ps -a 3.
docker rm CONTAINER_ID 4. docker images 5. docker rmi hello-world
walkthrough 03 1. docker run --rm alpine top 2. docker
ps 3. docker exec -it CONTAINER_ID sh
walkthrough 04 1. docker run --rm \ -v "$HOME/Desktop:\" alpine
watch ls 2. open new GIT BASH 3. docker ps 4. create a file or folder at ~/Desktop 5. see the file changes in docker