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
Lightning talk about working with vagrant
Search
Jan Schulte
June 27, 2014
Technology
1
52
Lightning talk about working with vagrant
Jan Schulte
June 27, 2014
Tweet
Share
More Decks by Jan Schulte
See All by Jan Schulte
Working with Vagrant
janschulte
0
65
eurucamp special ticket offer for Rails Girls study groups
janschulte
0
91
Reproducible work environments
janschulte
1
77
Working in a different country
janschulte
0
58
Other Decks in Technology
See All in Technology
IAMのマニアックな話 2025を執筆して、 見えてきたAWSアカウント管理の現在
nrinetcom
PRO
4
630
Кто отправит outbox? Валентин Удальцов, автор канала Пых
lamodatech
0
230
Oracle Audit Vault and Database Firewall 20 概要
oracle4engineer
PRO
2
1.6k
AIエージェント最前線! Amazon Bedrock、Amazon Q、そしてMCPを使いこなそう
minorun365
PRO
8
1.4k
CIでのgolangci-lintの実行を約90%削減した話
kazukihayase
0
330
Amazon ECS & AWS Fargate 運用アーキテクチャ2025 / Amazon ECS and AWS Fargate Ops Architecture 2025
iselegant
13
3.7k
從四件事帶你見識見識 事件驅動架構設計 (EDA)
line_developers_tw
PRO
0
920
DB 醬,嗨!哪泥嘎斯基?
line_developers_tw
PRO
0
1k
Azure AI Foundryでマルチエージェントワークフロー
seosoft
0
130
kubellが挑むBPaaSにおける、人とAIエージェントによるサービス開発の最前線と技術展望
kubell_hr
1
390
Prox Industries株式会社 会社紹介資料
proxindustries
0
120
OAuth/OpenID Connectで実現するMCPのセキュアなアクセス管理
kuralab
5
690
Featured
See All Featured
The Psychology of Web Performance [Beyond Tellerrand 2023]
tammyeverts
48
2.8k
Adopting Sorbet at Scale
ufuk
77
9.4k
Responsive Adventures: Dirty Tricks From The Dark Corners of Front-End
smashingmag
252
21k
Bootstrapping a Software Product
garrettdimon
PRO
307
110k
Fireside Chat
paigeccino
37
3.5k
Typedesign – Prime Four
hannesfritz
42
2.7k
Mobile First: as difficult as doing things right
swwweet
223
9.7k
BBQ
matthewcrist
89
9.7k
Rebuilding a faster, lazier Slack
samanthasiow
81
9k
Into the Great Unknown - MozCon
thekraken
39
1.8k
Facilitating Awesome Meetings
lara
54
6.4k
GitHub's CSS Performance
jonrohan
1031
460k
Transcript
Working with Vagrant Jan Schulte - @neinasaservice
Virtual machine • Software that emulates a complete computer •
For example “Run Windows on your Mac” simultaneously
source: http://www.macwindows.com/Images/Parallels8_Win8.png
What is Vagrant? • Open source tool for managing virtual
machines • Written in Ruby • Available for • Mac OS X • Linux • Windows
Why Vagrant • Portable work environments • Provide same working
environment for all team members • Spend less time with setup • Automatic installation of tools • One VM for every project
$ vagrant init
$ ls! Vagrantfile
$ vagrant up
$ vagrant ssh
Welcome to Ubuntu 12.04 LTS (GNU/Linux 3.2.0-23-generic x86_64)! ! *
Documentation: https://help.ubuntu.com/! Welcome to your Vagrant-built virtual machine.! Last login: Fri Jun 27 19:42:50 2014 from 10.0.2.2! vagrant@precise64:~$
Special things • user vagrant • password vagrant • Vagrantfile
is a Ruby file • Vagrantfile is checked in together with your project
• List of virtual machines • https://vagrantcloud.com/discover/featured • http://www.vagrantbox.es/ •
Tutorials • http://docs.vagrantup.com/v2/getting-started/ index.html • Example Working environment • https://github.com/schultyy/basic-development-env