SlideShare a Scribd company logo
Docker : deploy
Eric Ahn
2016/06
Sample : Node.js
In Dev PC,
$ cd ./sample/app.js
var express = require(‘express’)
var app = express();
app.get([‘/‘, ‘/index.html’], function(req, res) {
res.send(‘Hello Docker’);
});
app.listen(80);
Ubuntu Server
$ Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure(2) do |config|
config.vm.box = "hashicorp/precise64"
config.vm.box_version = “1.1.0"
config.vm.host_name = 'git-serveer'
config.vm.network "private_network", ip: "192.168.100.10"
config.vm.network "forwarded_port", guest: 80, host: 8080
end
$ vagrant up
https://docs.docker.com/engine/installation/linux/ubuntulinux/
$ vagrant ssh
$ sudo apt-get update
$ sudo apt-get install linux-image-generic-lts-trusty
$ sudo reboot
$ sudo apt-get update
$ sudo apt-cache policy docker-engine
$ sudo apt-get install docker-engine=1.10.3-0~precise
$ sudo service docker start
$ sudo docker run -it ubuntu bash
git
SSH key-gem
git repository
DEV machine
docker
git
git repository
Server
Test Env.
git
SSH key-gem
git repository
DEV machine
docker
git
git repository
Server
~/.ssh/id_rsa.pub
~/.ssh/authorized_keys
1) Set up “ssh”
git
SSH key-gem
git repository
DEV machine
docker
git
git repository
Server
2) git push
2) git push
git
SSH key-gem
git repository
DEV machine
docker
git
git repository
Server
2) post-receive
2) build with post-receive of git
#!/bin/bash
APP_NAME=exampleapp
APP_DIR=$HOME/$APP_NAME
REVISION=$(expr substr $(git rev-parse --verify HEAD) 1 7)
GIT_WORK_TREE=$APP_DIR git checkout -f
cd $APP_DIR
sudo docker build --tag $APP_NAME:$REVISION .
sudo docker stop $APP_NAME
sudo docker rm $APP_NAME
sudo docker run -d --name $APP_NAME -p 80:80 $APP_NAME:$REVISION
post-receive shell

More Related Content

PDF
Docker command
PDF
當專案漸趕,當遷移也不再那麼難 (Ship Your Projects with Docker EcoSystem)
PDF
Docker e postgresql
PDF
Docker remote-api
PDF
Docker 初探,實驗室中的運貨鯨
PDF
Drone CI/CD 自動化測試及部署
PDF
CoreOS + Kubernetes @ All Things Open 2015
PDF
Docker workshop 0507 Taichung
Docker command
當專案漸趕,當遷移也不再那麼難 (Ship Your Projects with Docker EcoSystem)
Docker e postgresql
Docker remote-api
Docker 初探,實驗室中的運貨鯨
Drone CI/CD 自動化測試及部署
CoreOS + Kubernetes @ All Things Open 2015
Docker workshop 0507 Taichung

What's hot (20)

PDF
Docker 原理與實作
PDF
App container rkt
PDF
Docker summit 2015: 以 Docker Swarm 打造多主機叢集環境
PDF
手把手帶你學Docker 03042017
PDF
Docker 101 - from 0 to Docker in 30 minutes
PDF
Docker / Ansible
PDF
When Docker ends, Chef begins ~ #idi2015 Incontro DevOps Italia
PDF
Conan a C/C++ Package Manager
PDF
From zero to Docker
PPTX
Deploying Symfony2 app with Ansible
PPTX
Dockerizing a Symfony2 application
PDF
Introduction to Project atomic (CentOS Dojo Bangalore)
PDF
Meetup C++ Floripa - Conan.io
PDF
JavaCro'15 - Conquer the Internet of Things with Java and Docker - Johan Jans...
PDF
Dockerizing Symfony Applications - Symfony Live Berlin 2014
 
PPTX
CoreOS in a Nutshell
PDF
BitTorrent on iOS
PPTX
Start tracking your ruby infrastructure
PPTX
Docker practice
PDF
Install openstack
Docker 原理與實作
App container rkt
Docker summit 2015: 以 Docker Swarm 打造多主機叢集環境
手把手帶你學Docker 03042017
Docker 101 - from 0 to Docker in 30 minutes
Docker / Ansible
When Docker ends, Chef begins ~ #idi2015 Incontro DevOps Italia
Conan a C/C++ Package Manager
From zero to Docker
Deploying Symfony2 app with Ansible
Dockerizing a Symfony2 application
Introduction to Project atomic (CentOS Dojo Bangalore)
Meetup C++ Floripa - Conan.io
JavaCro'15 - Conquer the Internet of Things with Java and Docker - Johan Jans...
Dockerizing Symfony Applications - Symfony Live Berlin 2014
 
CoreOS in a Nutshell
BitTorrent on iOS
Start tracking your ruby infrastructure
Docker practice
Install openstack
Ad

Viewers also liked (16)

PDF
Http capturing
PDF
Py conkr 20150829_docker-python
PDF
High perforance-browse-networking-2015-bwahn
PDF
Cdn gslb-20151209
PDF
Keep it simple web development stack
PDF
Spring rest-doc-2015-11
PDF
(micro)services avec Symfony et Tolerance
PDF
연구자 및 교육자를 위한 계산 및 분석 플랫폼 설계 - PyCon KR 2015
PDF
Py conkr 20150829_docker-python
KEY
Scaling php applications with redis
PDF
Tensorflow in Docker
PDF
[코세나, kosena] 빅데이터 구축 및 제안 가이드
PDF
Swift server-side-let swift2016
PDF
RestMQ - HTTP/Redis based Message Queue
PDF
Magento scalability from the trenches (Meet Magento Sweden 2016)
PDF
Infrastructure Deployment with Docker & Ansible
Http capturing
Py conkr 20150829_docker-python
High perforance-browse-networking-2015-bwahn
Cdn gslb-20151209
Keep it simple web development stack
Spring rest-doc-2015-11
(micro)services avec Symfony et Tolerance
연구자 및 교육자를 위한 계산 및 분석 플랫폼 설계 - PyCon KR 2015
Py conkr 20150829_docker-python
Scaling php applications with redis
Tensorflow in Docker
[코세나, kosena] 빅데이터 구축 및 제안 가이드
Swift server-side-let swift2016
RestMQ - HTTP/Redis based Message Queue
Magento scalability from the trenches (Meet Magento Sweden 2016)
Infrastructure Deployment with Docker & Ansible
Ad

Similar to Docker deploy (20)

PDF
PDF
Deploying Docker (Provisioning /w Docker + Chef/Puppet) - DevopsDaysPGH
KEY
Writing robust Node.js applications
PDF
Puppet and the HashiStack
PDF
Nodejs in Production
PDF
Continuous Delivery: The Next Frontier
PDF
Docker in Action
PDF
Burn down the silos! Helping dev and ops gel on high availability websites
PDF
soft-shake.ch - Hands on Node.js
PPTX
Harmonious Development: Via Vagrant and Puppet
PDF
Very Early Review - Rocket(CoreOS)
PDF
Node.js - async for the rest of us.
PPTX
Control your deployments with Capistrano
PDF
How to create your own hack environment
PDF
Test driven infrastructure
KEY
Railsconf2011 deployment tips_for_slideshare
PDF
Exploring Async PHP (SF Live Berlin 2019)
PDF
Nodejs Explained with Examples
PDF
Nodejsexplained 101116115055-phpapp02
PDF
NetDevOps Developer Environments with Vagrant @ SCALE16x
Deploying Docker (Provisioning /w Docker + Chef/Puppet) - DevopsDaysPGH
Writing robust Node.js applications
Puppet and the HashiStack
Nodejs in Production
Continuous Delivery: The Next Frontier
Docker in Action
Burn down the silos! Helping dev and ops gel on high availability websites
soft-shake.ch - Hands on Node.js
Harmonious Development: Via Vagrant and Puppet
Very Early Review - Rocket(CoreOS)
Node.js - async for the rest of us.
Control your deployments with Capistrano
How to create your own hack environment
Test driven infrastructure
Railsconf2011 deployment tips_for_slideshare
Exploring Async PHP (SF Live Berlin 2019)
Nodejs Explained with Examples
Nodejsexplained 101116115055-phpapp02
NetDevOps Developer Environments with Vagrant @ SCALE16x

Recently uploaded (20)

PDF
Triggering QUIC, presented by Geoff Huston at IETF 123
PPTX
innovation process that make everything different.pptx
PDF
Testing WebRTC applications at scale.pdf
PPTX
presentation_pfe-universite-molay-seltan.pptx
PPTX
CHE NAA, , b,mn,mblblblbljb jb jlb ,j , ,C PPT.pptx
PDF
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
PDF
Cloud-Scale Log Monitoring _ Datadog.pdf
PPT
Design_with_Watersergyerge45hrbgre4top (1).ppt
PPT
tcp ip networks nd ip layering assotred slides
PDF
The Internet -By the Numbers, Sri Lanka Edition
PPTX
introduction about ICD -10 & ICD-11 ppt.pptx
PPTX
Funds Management Learning Material for Beg
PPTX
PptxGenJS_Demo_Chart_20250317130215833.pptx
PDF
Paper PDF World Game (s) Great Redesign.pdf
PDF
The New Creative Director: How AI Tools for Social Media Content Creation Are...
PDF
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
PDF
💰 𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓 💰
DOCX
Unit-3 cyber security network security of internet system
PPTX
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
PPTX
Introuction about WHO-FIC in ICD-10.pptx
Triggering QUIC, presented by Geoff Huston at IETF 123
innovation process that make everything different.pptx
Testing WebRTC applications at scale.pdf
presentation_pfe-universite-molay-seltan.pptx
CHE NAA, , b,mn,mblblblbljb jb jlb ,j , ,C PPT.pptx
Best Practices for Testing and Debugging Shopify Third-Party API Integrations...
Cloud-Scale Log Monitoring _ Datadog.pdf
Design_with_Watersergyerge45hrbgre4top (1).ppt
tcp ip networks nd ip layering assotred slides
The Internet -By the Numbers, Sri Lanka Edition
introduction about ICD -10 & ICD-11 ppt.pptx
Funds Management Learning Material for Beg
PptxGenJS_Demo_Chart_20250317130215833.pptx
Paper PDF World Game (s) Great Redesign.pdf
The New Creative Director: How AI Tools for Social Media Content Creation Are...
Vigrab.top – Online Tool for Downloading and Converting Social Media Videos a...
💰 𝐔𝐊𝐓𝐈 𝐊𝐄𝐌𝐄𝐍𝐀𝐍𝐆𝐀𝐍 𝐊𝐈𝐏𝐄𝐑𝟒𝐃 𝐇𝐀𝐑𝐈 𝐈𝐍𝐈 𝟐𝟎𝟐𝟓 💰
Unit-3 cyber security network security of internet system
June-4-Sermon-Powerpoint.pptx USE THIS FOR YOUR MOTIVATION
Introuction about WHO-FIC in ICD-10.pptx

Docker deploy