aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2022-03-22 14:34:02 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2022-03-22 14:34:02 +0300
commitf94a40af0b9c3b520ccadb55dbf69d26a2a3cb25 (patch)
treec1c53239c3c2bea3917d1926eb3c9e58c8f83959
parentbump jekyll-theme (diff)
downloadblog-f94a40af0b9c3b520ccadb55dbf69d26a2a3cb25.tar.gz
blog-f94a40af0b9c3b520ccadb55dbf69d26a2a3cb25.zip
bind-mounts: fix a typo
-rw-r--r--_posts/2020-05-06-docker-bind-mounts.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2020-05-06-docker-bind-mounts.md b/_posts/2020-05-06-docker-bind-mounts.md
index 4141bf7..7ad46ac 100644
--- a/_posts/2020-05-06-docker-bind-mounts.md
+++ b/_posts/2020-05-06-docker-bind-mounts.md
@@ -188,7 +188,7 @@ All of that could cause problems with some applications.
One scenario I had to deal with is making an image that bundles all the gems
(and a specific Ruby version) for my Ruby web application.
That application shouldn't be run as root, but it must be able to pick up code
-changes on the fly, and I should be able `docker exec` into the container,
+changes on the fly, and I should be able to `docker exec` into the container,
update the dependencies (along with Gemfile[.lock], and those changes should be
reflected on the host without messing up file metadata), and restart the app.
It's quite easy to install the dependencies in the Dockerfile, but they (along