Skip to content

Commit a85d353

Browse files
committed
Remove inappropriate apostrophes
1 parent ca0f073 commit a85d353

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

_posts/13-03-01-Docker.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ A typical LAMP application might have three containers: a web server, a PHP-FPM
1111

1212
You can generate containers from the command line (see example below) or, for ease of maintenance, build a `docker-compose.yml` file for your project specifying which to create and how they communicate with one another.
1313

14-
Docker may help if you're developing multiple websites and want the separation that comes from installing each on it's own virtual machine, but don't have the necessary disk space or the time to keep everything up to date. It's efficient: the installation and downloads are quicker, you only need to store one copy of each image however often it's used, containers need less RAM and share the same OS kernel, so you can have more servers running simultaneously, and it takes a matter of seconds to stop and start them, no need to wait for a full server boot.
14+
Docker may help if you're developing multiple websites and want the separation that comes from installing each on its own virtual machine, but don't have the necessary disk space or the time to keep everything up to date. It's efficient: the installation and downloads are quicker, you only need to store one copy of each image however often it's used, containers need less RAM and share the same OS kernel, so you can have more servers running simultaneously, and it takes a matter of seconds to stop and start them, no need to wait for a full server boot.
1515

1616
### Example: Running your PHP Applications in Docker
1717

pages/The-Basics.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,7 +248,7 @@ Example of string
248248
spanning multiple lines
249249
using nowdoc syntax.
250250
$a does not parse.
251-
EOD; // closing 'EOD' must be on it's own line, and to the left most point
251+
EOD; // closing 'EOD' must be on its own line, and to the left most point
252252
253253
/**
254254
* Output:
@@ -276,7 +276,7 @@ Example of string
276276
spanning multiple lines
277277
using heredoc syntax.
278278
$a are parsed.
279-
EOD; // closing 'EOD' must be on it's own line, and to the left most point
279+
EOD; // closing 'EOD' must be on its own line, and to the left most point
280280
281281
/**
282282
* Output:

0 commit comments

Comments
 (0)