Completed
When doing a deployment
Class Central Classrooms beta
YouTube videos curated by Class Central.
Classroom Contents
Killer Docker Workflows for Development
Automatically move to the next video in the Classroom when playback concludes
- 1 Intro
- 2 What Is Docker?
- 3 Normal Bare-Metal Server
- 4 Virtual Machines
- 5 Containers are just walled processes
- 6 Docker is an Ecosystem
- 7 How does it work?
- 8 Codebase
- 9 Repo Tips
- 10 Monoliths vs Micro Services
- 11 Dependencies
- 12 Configuration
- 13 Use Environment Vars
- 14 Backing Services
- 15 Everything is "external"
- 16 Build, release, run
- 17 The Workflow
- 18 Build Step-Start Small
- 19 docker build
- 20 Sample usage
- 21 Port Binding
- 22 Concurrency
- 23 How well does your app handle scaling?
- 24 Disposability
- 25 Dev/prod Parity
- 26 Logging in Docker
- 27 Push logs remotely
- 28 Setting up fluentd
- 29 Setting up ElasticSearch and Kibana
- 30 Viewing Logs
- 31 Logging notes
- 32 Admin Processes
- 33 Containerizing Your Commands
- 34 Set up docker-compose
- 35 When doing a deployment