Self-Paced Training Url: Docker Self-Paced Training
📝 denotes an exercise
- Agenda [1:50]
- What Is Docker / Background / History? [2:25]
| # Logs | |
| logs | |
| *.log | |
| # Runtime data | |
| pids | |
| *.pid | |
| *.seed | |
| # Directory for instrumented libs generated by jscoverage/JSCover |
| <!-- The link we want our bower bird to point to --> | |
| [1]: http://www.bower.io | |
| <!-- The image url we want to use for our img tag source --> | |
| [2]: http://bower.io/img/bower-logo.png | |
| <!-- | |
| This will compile to two html nodes: | |
| Anchor: [linked item][1]: <a href="1">linked item</a> | |
| Image: ![alt text][2]: <img src="2" alt="alt text" /> |
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
| // Available variables: | |
| // - Machine | |
| // - interpret | |
| // - assign | |
| // - send | |
| // - sendParent | |
| // - spawn | |
| // - raise | |
| // - actions |
Self-Paced Training Url: Docker Self-Paced Training
📝 denotes an exercise
| /** | |
| * utility I used to rename all of my files based on the date | |
| * so that I can use netlify+dropbox to "schedule" posts | |
| * Example... | |
| * original filepath: Apps/chaseadams.io/articles/2019/yolo.md | |
| * frontmatter contains "date: "2019-01-01" | |
| * new filepath: Apps/chaseadams.io/articles/2019/2019-01-01-yolo.md | |
| */ | |
| const fs = require("fs"); | |
| const path = require("path"); |
| { | |
| "directory": "src/_lib", | |
| "json": "bower.json" | |
| } |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| LOGFILE=./post-receive.log | |
| DEPLOYDIR=$DEPLOYDIR # The place to deploy to. | |
| echo -e "[log] Received push request at $( date +%F)" >> $LOGFILE | |
| echo "[log] - Old SHA: $oldrev New SHA: $newrev Branch Name: $refname" >> $LOGFILE | |
| echo "[log] Starting Deploy..." >> $LOGFILE |