Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
Dockerコンテナを使った開発・ステージング環境の構築.pdf
Tadayuki Takeya
March 23, 2019
Technology
3
250
Dockerコンテナを使った開発・ステージング環境の構築.pdf
Tadayuki Takeya
March 23, 2019
Tweet
Share
More Decks by Tadayuki Takeya
See All by Tadayuki Takeya
あの人がどんなビールを飲んでいるか観察してみよう.pdf
takeyat
1
190
フロントエンドエンジニアでも知っておきたいバックエンドの話
takeyat
1
350
アプリケーションエンジニア視点で考えるDockerの次の世界の作り方.pdf
takeyat
3
230
Rancher2.1で、GitLabとの連携で お手軽にCI/CD環境を実現する方法
takeyat
0
200
Cloud Native関連Eventのご紹介
takeyat
1
170
Other Decks in Technology
See All in Technology
LINEのData Platform室が実践する大規模分散環境のCapacity Planning
line_developers
PRO
0
100
Let's contribute to OSS with Go - Go Confenence 2022 Spring
rennnosuke
1
210
Learning from AWS Customer Security Incidents [2022]
ramimac
0
120
ZOZOTOWNのProduction Readiness Checklistと信頼性向上の取り組み / Improvement the reliability of ZOZOTOWN with Production Readiness Checklist
akitok_
4
1.1k
動画配信技術について
yaminoma
0
180
1,000万人以上が利用する「家族アルバム みてね」のSRE組織は4年間でどのように作られてきたのか/SRE NEXT 2022
isaoshimizu
4
1.7k
[SRE NEXT 2022]ヤプリのSREにおけるセキュリティ強化の取り組みを公開する
mmochi23
1
110
Building smarter apps with machine learning, from magic to reality
picardparis
4
3.1k
CLI専門支部に参加したら AWSエンジニアに転職できた件について
tsukuboshi
0
610
THETA Xの登場はジオ業界を変えるか?
furuhashilab
0
140
New Features in C# 10/11
chack411
0
330
エンジニアと気軽に繋がれるプラットフォーム「ハッカー飯」で行った セキュリティ・モニタリングに関する取り組みについて
nobuakikikuchi
0
340
Featured
See All Featured
Java REST API Framework Comparison - PWX 2021
mraible
PRO
11
4.6k
CSS Pre-Processors: Stylus, Less & Sass
bermonpainter
349
27k
Designing Experiences People Love
moore
130
22k
Building an army of robots
kneath
299
40k
Infographics Made Easy
chrislema
233
17k
Clear Off the Table
cherdarchuk
79
280k
Documentation Writing (for coders)
carmenhchung
47
2.5k
Designing Dashboards & Data Visualisations in Web Apps
destraynor
224
49k
Why Our Code Smells
bkeepers
PRO
324
54k
The MySQL Ecosystem @ GitHub 2015
samlambert
238
11k
Fashionably flexible responsive web design (full day workshop)
malarkey
396
62k
In The Pink: A Labor of Love
frogandcode
130
21k
Transcript
Docker 2019/03/23 Tadayuki Takeya
Docker
Docker • ! • Client − Docker"# • Server −
VMware ESXi Server"#Docker"# • • AWS Elastic Beanstalk • Amazon ECS"Elastic Container Service# • • AWS Elastic Beanstalk
Docker Developer PHP Server MySQL Server DB Storage App Container
docker-compose.yml version: "2" services: phps: container_name: "phps_web" restart: unless-stopped build:
./phps ports: - "80:80" - "50022:22" links: - phps_mysql:db volumes: - /var/run - ../phps_server/phps:/var/www/html/phps environment: SYSTEM_NAME: phps RUN_ENV: test RDS_HOSTNAME: phps_mysql RDS_DB_NAME: phps RDS_USERNAME: phps RDS_PASSWORD: ********** RDS_PORT: 3306 ADM_VER: 4.3.1 AWS_S3_REGION: ap-northeast-1 AWS_S3_BUCKET: phps-test-************** AWS_ACCESS_KEY_ID: ******************** AWS_SECRET_ACCESS_KEY: ************************* phps_mysql: container_name: "phps_mysql" build: ./mysql # restart: always restart: unless-stopped ports: - "3306:3306" volumes_from: - phps_storage phps_storage: build: ./storage
Docker Developers PHP Container Amazon Aurora App Container Amazon
EC2 Container Registry