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
Dockerコンテナを使った開発・ステージング環境の構築.pdf
Search
Sponsored
·
SiteGround - Reliable hosting with speed, security, and support you can count on.
→
Tadayuki Takeya
March 23, 2019
Technology
500
3
Share
Embed
Copy iframe code
Copy JS code
Copy link
Start on current slide
Dockerコンテナを使った開発・ステージング環境の構築.pdf
Tadayuki Takeya
March 23, 2019
More Decks by Tadayuki Takeya
See All by Tadayuki Takeya
あの人がどんなビールを飲んでいるか観察してみよう.pdf
takeyat
1
300
フロントエンドエンジニアでも知っておきたいバックエンドの話
takeyat
1
670
アプリケーションエンジニア視点で考えるDockerの次の世界の作り方.pdf
takeyat
3
450
Rancher2.1で、GitLabとの連携で お手軽にCI/CD環境を実現する方法
takeyat
0
360
Cloud Native関連Eventのご紹介
takeyat
1
360
Other Decks in Technology
See All in Technology
AIペネトレーションテスト・ セキュリティ検証「AgenticSec」紹介資料
laysakura
2
9k
『三匹の子ぶた』から学ぶネットワークセキュリティの昔と今 / Network Security: Then and Now Through the Lens of The Three Little Pigs
nttcom
1
6.1k
【CEDEC2026】『GRANBLUE FANTASY: Relink - Endless Ragnarok』のバトル制作事例 ~最高のキャラゲーを目指して~
cygames
PRO
0
300
事業価値と Engineering 2026年度版
recruitengineers
PRO
49
24k
修正PRを食べてレビュースキルが賢くなる:Claude Codeによる自己改善サイクル
yuyaumetsu
6
1.5k
Invisible to AI? Making TYPO3 Sites Quotable by AI Search Systems
wolfgangwagner
0
210
トヨタ⽣産⽅式(TPS)⼊⾨
recruitengineers
PRO
3
860
変化の早いClaude Codeを 書籍に落とし込む
oikon48
7
1.4k
モダンフロントエンド 開発研修
recruitengineers
PRO
4
660
Breaking the Seal: Static Deobfuscation of Compiled V8 JavaScript Bytecode Malware
hshrzd
0
790
AIエージェントを前提としたプラットフォーム エンジニアリング:GKEで作るAgent-Ready Golden Path
legalontechnologies
PRO
2
240
モノリス Rails でも日中に rails db:migrate を走らせたい! / Daytime rails db:migrate on Monolithic Rails!
euglena1215
4
590
Featured
See All Featured
HDC tutorial
michielstock
2
790
Why Mistakes Are the Best Teachers: Turning Failure into a Pathway for Growth
auna
0
200
Imperfection Machines: The Place of Print at Facebook
scottboms
270
14k
Taking LLMs out of the black box: A practical guide to human-in-the-loop distillation
inesmontani
PRO
3
2.3k
4 Signs Your Business is Dying
shpigford
187
23k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
35
3.7k
How to Talk to Developers About Accessibility
jct
2
510
What's in a price? How to price your products and services
michaelherold
247
13k
WENDY [Excerpt]
tessaabrams
11
39k
Redefining SEO in the New Era of Traffic Generation
szymonslowik
1
380
Organizational Design Perspectives: An Ontology of Organizational Design Elements
kimpetersen
PRO
1
790
コードの90%をAIが書く世界で何が待っているのか / What awaits us in a world where 90% of the code is written by AI
rkaga
63
45k
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