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
offz
April 20, 2017
Programming
0
44
Day 2 - Docker
offz
April 20, 2017
Tweet
Share
More Decks by offz
See All by offz
TM-P2-IT-security
offfffz
0
23
Docker Compose for Rails Developer
offfffz
1
36
Day 2 - CI
offfffz
0
56
Day 1 - Git
offfffz
0
89
Day 1 - Testing
offfffz
0
47
Other Decks in Programming
See All in Programming
A2A プロトコルを試してみる
azukiazusa1
2
1.1k
Bytecode Manipulation 으로 생산성 높이기
bigstark
2
370
GitHub Copilot and GitHub Codespaces Hands-on
ymd65536
1
110
つよそうにふるまい、つよい成果を出すのなら、つよいのかもしれない
irof
1
300
WindowInsetsだってテストしたい
ryunen344
1
190
KotlinConf 2025 現地で感じたServer-Side Kotlin
n_takehata
1
230
型付きアクターモデルがもたらす分散シミュレーションの未来
piyo7
0
810
Create a website using Spatial Web
akkeylab
0
300
Benchmark
sysong
0
250
Beyond Portability: Live Migration for Evolving WebAssembly Workloads
chikuwait
0
390
Claude Codeの使い方
ttnyt8701
1
130
Webの外へ飛び出せ NativePHPが切り拓くPHPの未来
takuyakatsusa
2
340
Featured
See All Featured
The Straight Up "How To Draw Better" Workshop
denniskardys
233
140k
"I'm Feeling Lucky" - Building Great Search Experiences for Today's Users (#IAC19)
danielanewman
228
22k
[RailsConf 2023 Opening Keynote] The Magic of Rails
eileencodes
29
9.5k
Writing Fast Ruby
sferik
628
61k
Music & Morning Musume
bryan
46
6.6k
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.8k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
For a Future-Friendly Web
brad_frost
179
9.8k
Measuring & Analyzing Core Web Vitals
bluesmoon
7
490
The Invisible Side of Design
smashingmag
299
51k
Java REST API Framework Comparison - PWX 2021
mraible
31
8.6k
Thoughts on Productivity
jonyablonski
69
4.7k
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