Skip to content

Commit c6c1230

Browse files
committed
add comments on what to keep from the earlier version
remove duplicate footnote
1 parent 0724a8e commit c6c1230

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

chapter_09_docker.asciidoc

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -242,10 +242,6 @@ How will containerizing our software help with the danger areas?
242242
// TODO: consider getting rid of the staging server??
243243

244244

245-
246-
////
247-
248-
249245
old content follows. is there anything we want to rescue from here?
250246

251247
But there are solutions to all of these. In order:
@@ -254,6 +250,7 @@ But there are solutions to all of these. In order:
254250
* Using a 'staging site', on the same infrastructure as the production site,
255251
can help us test out our deployments and get things right before we go to
256252
the "real" site.
253+
// CSANAD: I would keep the staging server.
257254

258255

259256
* We can also 'run our functional tests against the staging site'. That will
@@ -266,6 +263,12 @@ But there are solutions to all of these. In order:
266263
like on our own PC, a 'virtualenv' is useful on the server for
267264
managing packages and dependencies when you might be running more than one
268265
Python [keep-together]#application#.
266+
// CSANAD: I would keep virtualenv in containers. First, because it doesn't hurt and
267+
// I have no knowledge of it resulting in any overhead. Second, because pip warns
268+
// against globally installed packages, and ignoring warnings is bad.
269+
// Finally, because it "feels" right:
270+
// my application is set up so that if I decide to switch over from containers to VM-s, I
271+
// don't really need to touch dependency management.
269272

270273
* ((("automated deployment", "benefits of")))((("automated deployment", see="also Fabric")))And
271274
finally, 'automation, automation, automation'. By using an automated

0 commit comments

Comments
 (0)