Skip to content

Commit f7ae8d1

Browse files
committed
adding new docker resource
1 parent 4aef457 commit f7ae8d1

File tree

6 files changed

+24
-10
lines changed

6 files changed

+24
-10
lines changed

all.html

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2995,9 +2995,9 @@ <h1>API Integration</h1>
29952995
<p>The majority of production Python web applications rely on several
29962996
externally hosted application programming interfaces (APIs). APIs are also
29972997
commonly referred to as third party services or external platforms.
2998-
Examples include <a href="https://www.twilio.com/">Twilio</a> for messaging and voice
2999-
services, <a href="https://stripe.com/">Stripe</a> for payment processing, and
3000-
<a href="https://disqus.com/">Disqus</a> for embedded webpage comments.</p>
2998+
Examples include <a href="https://www.twilio.com/docs/">Twilio</a> for messaging and
2999+
voice services, <a href="https://stripe.com/docs/api">Stripe</a> for payment processing
3000+
and <a href="https://disqus.com/api/docs/">Disqus</a> for embedded webpage comments.</p>
30013001
<p>There are many articles about proper API design but best practices for
30023002
integrating APIs is less commonly written about. However, this subject
30033003
continuously grows in importance because APIs provide critical functionality
@@ -5331,6 +5331,11 @@ <h2>Docker resources</h2>
53315331
well worth buying.</p>
53325332
</li>
53335333
<li>
5334+
<p><a href="http://pythonforengineers.com/what-the-bleep-is-docker/">What the Bleep is Docker?</a>
5335+
is a plain English explanation with examples of what Docker provides and
5336+
what it can be used for in your environment.</p>
5337+
</li>
5338+
<li>
53345339
<p><a href="https://zwischenzugs.wordpress.com/2015/03/14/docker-in-practice-a-guide-for-engineers/">Docker in Practice - A Guide for Engineers</a>
53355340
is an explanation of the concepts and philosophy by the authors of the
53365341
new Manning Docker book in early access format.</p>

api-integration.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ <h1>API Integration</h1>
3838
<p>The majority of production Python web applications rely on several
3939
externally hosted application programming interfaces (APIs). APIs are also
4040
commonly referred to as third party services or external platforms.
41-
Examples include <a href="https://www.twilio.com/">Twilio</a> for messaging and voice
42-
services, <a href="https://stripe.com/">Stripe</a> for payment processing, and
43-
<a href="https://disqus.com/">Disqus</a> for embedded webpage comments.</p>
41+
Examples include <a href="https://www.twilio.com/docs/">Twilio</a> for messaging and
42+
voice services, <a href="https://stripe.com/docs/api">Stripe</a> for payment processing
43+
and <a href="https://disqus.com/api/docs/">Disqus</a> for embedded webpage comments.</p>
4444
<p>There are many articles about proper API design but best practices for
4545
integrating APIs is less commonly written about. However, this subject
4646
continuously grows in importance because APIs provide critical functionality

docker.html

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,11 @@ <h2>Docker resources</h2>
6060
well worth buying.</p>
6161
</li>
6262
<li>
63+
<p><a href="http://pythonforengineers.com/what-the-bleep-is-docker/">What the Bleep is Docker?</a>
64+
is a plain English explanation with examples of what Docker provides and
65+
what it can be used for in your environment.</p>
66+
</li>
67+
<li>
6368
<p><a href="https://zwischenzugs.wordpress.com/2015/03/14/docker-in-practice-a-guide-for-engineers/">Docker in Practice - A Guide for Engineers</a>
6469
is an explanation of the concepts and philosophy by the authors of the
6570
new Manning Docker book in early access format.</p>

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-27T20:57:27Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-03-28T09:37:26Z</updated></feed>

source/content/pages/06-web-apis/02-api-integration.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ meta: Integrating web APIs into an application is necessary for both mobile and
99
The majority of production Python web applications rely on several
1010
externally hosted application programming interfaces (APIs). APIs are also
1111
commonly referred to as third party services or external platforms.
12-
Examples include [Twilio](https://www.twilio.com/) for messaging and voice
13-
services, [Stripe](https://stripe.com/) for payment processing, and
14-
[Disqus](https://disqus.com/) for embedded webpage comments.
12+
Examples include [Twilio](https://www.twilio.com/docs/) for messaging and
13+
voice services, [Stripe](https://stripe.com/docs/api) for payment processing
14+
and [Disqus](https://disqus.com/api/docs/) for embedded webpage comments.
1515

1616
There are many articles about proper API design but best practices for
1717
integrating APIs is less commonly written about. However, this subject

source/content/pages/07-web-app-deployment/17-docker.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ on Amazon Web Services, Google Compute Engine, Linode, Rackspace or elsewhere.
3131
[O'Reilly Introduction to Docker video](http://shop.oreilly.com/product/0636920035732.do) that's
3232
well worth buying.
3333

34+
* [What the Bleep is Docker?](http://pythonforengineers.com/what-the-bleep-is-docker/)
35+
is a plain English explanation with examples of what Docker provides and
36+
what it can be used for in your environment.
37+
3438
* [Docker in Practice - A Guide for Engineers](https://zwischenzugs.wordpress.com/2015/03/14/docker-in-practice-a-guide-for-engineers/)
3539
is an explanation of the concepts and philosophy by the authors of the
3640
new Manning Docker book in early access format.

0 commit comments

Comments
 (0)