https://github.com/jessestuart/tt-containerization-demo
https://github.com/jessestuart/tt-containerization-demo
docker presentation remarkjs
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jessestuart/tt-containerization-demo
- Owner: jessestuart
- Created: 2017-04-21T07:58:54.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2026-02-10T15:16:02.000Z (6 months ago)
- Last Synced: 2026-02-10T19:47:05.512Z (6 months ago)
- Topics: docker, presentation, remarkjs
- Language: JavaScript
- Size: 360 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 34
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Overview
A brief presentation on the current state of containerization circa mid-2017.
Just to make things fun and meta, a simple Dockerfile is included that will boot
up an nginx server to serve the built assets (after they've been compiled by
gulp):
```bash
docker build -t tt-containerization-demo .
docker run -p 80:80 tt-containerization-demo
```
And if you really want to get fancy, you can spin up a remote instance using
`docker-machine` on e.g. Digital Ocean, and deploy the static site with the
push of a button:
```bash
# Spin up a new Droplet on Digital Ocean...
docker-machine create --driver digitalocean --digitalocean-access-token {insert_your_api_key} tt-containerization-demo
docker-machine env tt-containerization-demo
eval $(docker-machine env tt-containerization-demo)
# Then build + run the docker image.
docker build -t tt-containerization-demo .
docker run -p 80:80 tt-containerization-demo
```